From 3b556a038728daf189b67be5b5fe686b88583222 Mon Sep 17 00:00:00 2001 From: "codeflash-ai[bot]" <148906541+codeflash-ai[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:58:58 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Speed=20up=20sorter=20by?= =?UTF-8?q?=204225716.95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code_to_optimize/bubble_sort_3.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code_to_optimize/bubble_sort_3.py diff --git a/code_to_optimize/bubble_sort_3.py b/code_to_optimize/bubble_sort_3.py new file mode 100644 index 0000000..3a904b0 --- /dev/null +++ b/code_to_optimize/bubble_sort_3.py @@ -0,0 +1,5 @@ +def sorter(arr): + arr.sort() + return arr + +