diff --git a/codeflash/galileo/bubble_sort.py b/codeflash/galileo/bubble_sort.py new file mode 100644 index 000000000..a05e816be --- /dev/null +++ b/codeflash/galileo/bubble_sort.py @@ -0,0 +1,5 @@ +def sorter(arr): + print("codeflash stdout: Sorting list") + arr.sort() # Use Python's built-in, much faster sort + print(f"result: {arr}") + return arr