We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 979ab4b commit 0c547baCopy full SHA for 0c547ba
src/main/java/com/fishercoder/solutions/firstthousand/_912.java
@@ -3,10 +3,10 @@
3
public class _912 {
4
public static class Solution1 {
5
/**
6
- * Implementation of MergeSort which is a stable sort, unlike QuickSort which isn't stable.
+ * Implementation of MergeSort which is a stable sort, unlike QuickSort which isn't.
7
*/
8
public int[] sortArray(int[] nums) {
9
- //use a helder function to take in two additional parameters for the ease of recursion
+ //use a helper function to take in two additional parameters for the ease of recursion
10
return sort(nums, 0, nums.length - 1);
11
}
12
0 commit comments