Skip to content

Commit bd452f6

Browse files
authored
C#
1 parent 12a6588 commit bd452f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Quick Sort/quick_sort.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
internal static int[] quick_sort(int[] arr, int left, int right)
1+
internal static int[] QuickSort(int[] arr, int left, int right)
22
{
33
int x = arr[(left + right) / 2];
44
int i = left, j = right - 1;
@@ -16,4 +16,4 @@ internal static int[] quick_sort(int[] arr, int left, int right)
1616
if (left < j) arr = quick_sort(arr, left, j + 1);
1717
if (i < right) arr = quick_sort(arr, i, right);
1818
return arr;
19-
}
19+
}

0 commit comments

Comments
 (0)