From c40a80b6d3d98712204c4f8ae7938eee31bf713c Mon Sep 17 00:00:00 2001
From: "codeflash-ai[bot]"
 <148906541+codeflash-ai[bot]@users.noreply.github.com>
Date: Wed, 17 Jan 2024 04:06:03 +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
+
+