Skip to content

Commit c113049

Browse files
coderpower0poyea
authored andcommittedMay 20, 2019
fix spelling on line 44 of bucket sort (#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
 

Diff for: ‎sorts/bucket_sort.py

+1-1
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) for item in user_input.split(',')]
4747
print(bucket_sort(unsorted))

0 commit comments

Comments
 (0)