Skip to content

Commit

Permalink
fix spelling on line 44 of bucket sort (TheAlgorithms#824)
Browse files Browse the repository at this point in the history
* change besd to best
  • Loading branch information
coderpower0 authored and poyea committed May 20, 2019
1 parent 316d5ff commit c113049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorts/bucket_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit c113049

Please sign in to comment.