diff --git a/codeflash/bubble_sort.py b/codeflash/bubble_sort.py index c07a7eb38..938e0b6a3 100644 --- a/codeflash/bubble_sort.py +++ b/codeflash/bubble_sort.py @@ -1,6 +1,6 @@ def mysorter(arr): print("codeflash stdout: Sorting list") - arr.sort() # built-in Timsort, much faster than bubble sort + arr.sort() # much faster built-in Timsort print(f"result: {arr}") return arr