We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55477ca commit 0531b5dCopy full SHA for 0531b5d
1 file changed
ShellSort.py
@@ -1,6 +1,7 @@
1
def shellSort(inpList):
2
3
gap = len(inpList) // 2
4
+
5
while gap > 0:
6
7
for i in range(gap, len(inpList)):
0 commit comments