Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions codeflash/bubble_sort.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
def mysorter(arr):
print("codeflash stdout: Sorting list")
arr.sort() # built-in Timsort, much faster than bubble sort
print(f"result: {arr}")
arr.sort() # built-in Timsort: fastest general-purpose sort in Python
return arr


Expand Down
Loading