Skip to content

Commit

Permalink
fixed shell_sort
Browse files Browse the repository at this point in the history
  • Loading branch information
harshildarji committed Aug 17, 2016
1 parent ca78a8a commit 42e9b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorts/shell_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def shell_sort(collection):
comparable items inside
:return: the same collection ordered by ascending
>>> shell_sort([0, 5, 3, 2, 2)]
>>> shell_sort([0, 5, 3, 2, 2])
[0, 2, 2, 3, 5]
>>> shell_sort([])
Expand Down

0 comments on commit 42e9b09

Please sign in to comment.