fix spelling on line 44 of bucket sort (#824)

* change besd to best
This commit is contained in:
Adam 2019-05-20 21:22:20 +08:00 committed by John Law
parent 316d5ffa37
commit c1130490d7

View File

@ -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))