Skip to content

Commit 7564380

Browse files
authored
C#
1 parent e3974f6 commit 7564380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Shell Sort/shell_sort.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
internal static int[] shell_sort(int[] arr)
1+
internal static int[] ShellSort(int[] arr)
22
{
33
for (int i = arr.Length / 2; i > 0; i /= 2)
44
for (int j = i; j < arr.Length; ++j)
@@ -9,4 +9,4 @@ internal static int[] shell_sort(int[] arr)
99
arr[k + i] = temp;
1010
}
1111
return arr;
12-
}
12+
}

0 commit comments

Comments
 (0)