Skip to content

Commit c113049

Browse files
coderpower0poyea
authored andcommitted
fix spelling on line 44 of bucket sort (TheAlgorithms#824)
* change besd to best
1 parent 316d5ff commit c113049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎sorts/bucket_sort.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def bucket_sort(my_list,bucket_size=DEFAULT_BUCKET_SIZE):
4141

4242

4343
#test
44-
#besd on python 3.7.3
44+
#best on python 3.7.3
4545
user_input=input('Enter numbers separated by a comma:').strip()
4646
unsorted=[int(item) foriteminuser_input.split(',')]
4747
print(bucket_sort(unsorted))

0 commit comments

Comments
(0)