Skip to content

Instantly share code, notes, and snippets.

View om-mapari's full-sized avatar
😼
If it works, don’t ask how.

Om Mapari om-mapari

😼
If it works, don’t ask how.
View GitHub Profile
# Optimized Bubble sort in Python
def bubbleSort(array):
# loop through each element of array
for i in range(len(array)):
# keep track of swapping
swapped = False