delete the bubble sort test

This commit is contained in:
Saurabh Misra 2024-12-31 15:46:22 -08:00
parent 47ff3ada3c
commit 97a5c4a719

View file

@ -1,8 +0,0 @@
def sorter(arr):
for i in range(len(arr)):
for j in range(len(arr) - 1):
if arr[j] > arr[j + 1]:
temp = arr[j]
arr[j] = arr[j + 1]
arr[j + 1] = temp
return arr