Skip to content

Commit 1fcf2f0

Browse files
authored
Updated files
1 parent 75e9485 commit 1fcf2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data Structures and Algorithms/Sorting Algorithms/shell_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def shell_sort(arr):
22
n = len(arr)
3-
gap = n // 2 # gap size
3+
gap = n // 2 # gap size
44

55
while gap > 0:
66
for i in range(gap, n):

0 commit comments

Comments
 (0)