From 34eba7d9fdeb926ba0dd02cb70911f655828b597 Mon Sep 17 00:00:00 2001 From: coderpower0 <34916469+coderpower0@users.noreply.github.com> Date: Mon, 20 May 2019 12:51:20 +0800 Subject: [PATCH] fix spelling on line 44 change besd to best --- sorts/bucket_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/bucket_sort.py b/sorts/bucket_sort.py index 5c17703c26f0..aba0124ad909 100644 --- a/sorts/bucket_sort.py +++ b/sorts/bucket_sort.py @@ -41,7 +41,7 @@ def bucket_sort(my_list,bucket_size=DEFAULT_BUCKET_SIZE): #test -#besd on python 3.7.3 +#best on python 3.7.3 user_input =input('Enter numbers separated by a comma:').strip() unsorted =[int(item) for item in user_input.split(',')] print(bucket_sort(unsorted))