Skip to content

Commit a7133ec

Browse files
Add typing (TheAlgorithms#9652)
Co-authored-by: Jeremy Tan <[email protected]>
1 parent 28f1e68 commit a7133ec

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
@@ -3,7 +3,7 @@
33
"""
44

55

6-
def shell_sort(collection):
6+
def shell_sort(collection: list[int]) -> list[int]:
77
"""Pure implementation of shell sort algorithm in Python
88
:param collection: Some mutable ordered collection with heterogeneous
99
comparable items inside

0 commit comments

Comments
 (0)