From be621871838ed0e6c6d3bb8c6dcbb14f8b1f9528 Mon Sep 17 00:00:00 2001 From: Shobhit Sachan <31156049+sachans@users.noreply.github.com> Date: Fri, 9 Mar 2018 19:21:34 +0530 Subject: [PATCH] Update bubble_sort.md --- snippets/bubble_sort.md | 1 - 1 file changed, 1 deletion(-) diff --git a/snippets/bubble_sort.md b/snippets/bubble_sort.md index 604ee6c0e..b5c2797ae 100644 --- a/snippets/bubble_sort.md +++ b/snippets/bubble_sort.md @@ -1,6 +1,5 @@ ### bubble_sort -bubble sort also makes it too simple for sorting any list or array. It simply compares the two neighbouring values and swap them. ```python def bubble_sort(arr):