From 381605837cc4d8b75a0f39d09f462134c7285027 Mon Sep 17 00:00:00 2001 From: "codeflash-ai[bot]" <148906541+codeflash-ai[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 22:28:06 +0000 Subject: [PATCH] Code Optimizations for PR #1 --- code_to_optimize/bubble_sort.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code_to_optimize/bubble_sort.py diff --git a/code_to_optimize/bubble_sort.py b/code_to_optimize/bubble_sort.py new file mode 100644 index 0000000..3a904b0 --- /dev/null +++ b/code_to_optimize/bubble_sort.py @@ -0,0 +1,5 @@ +def sorter(arr): + arr.sort() + return arr + +