Skip to content

Commit 1562b40

Browse files
committed
spaces in int list
1 parent 5e8e686 commit 1562b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/comb_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def comb_sort(data: list) -> list:
2727
[0, 2, 2, 3, 5]
2828
>>> comb_sort([])
2929
[]
30-
>>> comb_sort([99,45,-7,8,2,0,-15,3])
30+
>>> comb_sort([99, 45, -7, 8, 2, 0, -15, 3])
3131
[-15, -7, 0, 2, 3, 8, 45, 99]
3232
"""
3333
shrink_factor = 1.3

0 commit comments

Comments
 (0)