Skip to content

Commit 42e9b09

Browse files
committed
fixed shell_sort
1 parent ca78a8a commit 42e9b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/shell_sort.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def shell_sort(collection):
1818
comparable items inside
1919
:return: the same collection ordered by ascending
2020
21-
>>> shell_sort([0, 5, 3, 2, 2)]
21+
>>> shell_sort([0, 5, 3, 2, 2])
2222
[0, 2, 2, 3, 5]
2323
2424
>>> shell_sort([])

0 commit comments

Comments
 (0)