We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f1e68 commit a7133ecCopy full SHA for a7133ec
sorts/shell_sort.py
@@ -3,7 +3,7 @@
3
"""
4
5
6
-def shell_sort(collection):
+def shell_sort(collection: list[int]) -> list[int]:
7
"""Pure implementation of shell sort algorithm in Python
8
:param collection: Some mutable ordered collection with heterogeneous
9
comparable items inside
0 commit comments