We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12887b7 commit cca7cdbCopy full SHA for cca7cdb
sorts/bucket_sort.py
@@ -63,6 +63,5 @@ def bucket_sort(my_list: list) -> list:
63
from doctest import testmod
64
65
testmod()
66
-
67
assert bucket_sort([4, 5, 3, 2, 1]) == [1, 2, 3, 4, 5]
68
assert bucket_sort([0, 1, -10, 15, 2, -2]) == [-10, -2, 0, 1, 2, 15]
0 commit comments