We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3974f6 commit 7564380Copy full SHA for 7564380
Shell Sort/shell_sort.cs
@@ -1,4 +1,4 @@
1
-internal static int[] shell_sort(int[] arr)
+internal static int[] ShellSort(int[] arr)
2
{
3
for (int i = arr.Length / 2; i > 0; i /= 2)
4
for (int j = i; j < arr.Length; ++j)
@@ -9,4 +9,4 @@ internal static int[] shell_sort(int[] arr)
9
arr[k + i] = temp;
10
}
11
return arr;
12
-}
+}
0 commit comments