mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
delete the bubble sort test
This commit is contained in:
parent
47ff3ada3c
commit
97a5c4a719
1 changed files with 0 additions and 8 deletions
|
|
@ -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
|
||||
Loading…
Reference in a new issue