Skip to content

Instantly share code, notes, and snippets.

@vividhsv
Created December 21, 2016 21:39
Show Gist options
  • Save vividhsv/e75eaeac2b94572db7fb22fc2cd5e109 to your computer and use it in GitHub Desktop.
Save vividhsv/e75eaeac2b94572db7fb22fc2cd5e109 to your computer and use it in GitHub Desktop.
Bubble Sort
def bubble_sort(arr):
is_sorted = False
while not is_sorted:
is_sorted = True
for i in range(0, len(arr) -1):
if arr[i] > arr[i+1]:
is_sorted = False
arr[i], arr[i+1] = arr[i+1], arr[i]
return arr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment