From 7ebba442b79b75c5bb7b240bed6126d7f429c257 Mon Sep 17 00:00:00 2001 From: fake-afik <153473227+fake-afik@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:55:44 -0700 Subject: [PATCH] =?UTF-8?q?Revert=20"=E2=9A=A1=EF=B8=8F=20Speed=20up=20`so?= =?UTF-8?q?rter()`=20by=204211531.56=20in=20PR=20#1=20(`new-sorter`)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code_to_optimize/bubble_sort.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 code_to_optimize/bubble_sort.py diff --git a/code_to_optimize/bubble_sort.py b/code_to_optimize/bubble_sort.py deleted file mode 100644 index 3a904b0..0000000 --- a/code_to_optimize/bubble_sort.py +++ /dev/null @@ -1,5 +0,0 @@ -def sorter(arr): - arr.sort() - return arr - -