Skip to content

Commit

Permalink
Updated files
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreya-0309 authored Jun 7, 2024
1 parent 75e9485 commit 1fcf2f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def shell_sort(arr):
n = len(arr)
gap = n // 2 # gap size
gap = n // 2 # gap size

while gap > 0:
for i in range(gap, n):
Expand Down

0 comments on commit 1fcf2f0

Please sign in to comment.