diff --git a/codeflash/bubble_sort.py b/codeflash/bubble_sort.py new file mode 100644 index 000000000..7dc644cde --- /dev/null +++ b/codeflash/bubble_sort.py @@ -0,0 +1,5 @@ +def sorter(arr): + print("codeflash stdout: Sorting list") + arr.sort() + print(f"result: {arr}") + return arr