Skip to content

Commit b43b358

Browse files
authored
Apply suggestion from @cclauss
1 parent a5c73c8 commit b43b358

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎sorts/comb_sort.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def comb_sort[T: Comparable](data: list[T]) -> list[T]:
4141
>>> comb_sort(["c", "a", "b"])
4242
['a', 'b', 'c']
4343
>>> comb_sort([2.5, -1, 0.0])
44-
[-1.0, 0.0, 2.5]
44+
[-1, 0.0, 2.5]
4545
>>> comb_sort([1, "a"])
4646
Traceback (most recent call last):
4747
...

0 commit comments

Comments
 (0)