Skip to content

Commit f3771b1

Browse files
authored
C#
1 parent bd452f6 commit f3771b1

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
@@ -13,7 +13,7 @@ internal static int[] QuickSort(int[] arr, int left, int right)
1313
arr[j--] = temp;
1414
}
1515
}
16-
if (left < j) arr = quick_sort(arr, left, j + 1);
17-
if (i < right) arr = quick_sort(arr, i, right);
16+
if (left < j) arr = QuickSort(arr, left, j + 1);
17+
if (i < right) arr = QuickSort(arr, i, right);
1818
return arr;
1919
}

0 commit comments

Comments
 (0)