Skip to content

Commit 0c547ba

Browse files
update 912
1 parent 979ab4b commit 0c547ba

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/fishercoder/solutions/firstthousand

1 file changed

+2
-2
lines changed

Diff for: src/main/java/com/fishercoder/solutions/firstthousand/_912.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
public class _912 {
44
public static class Solution1 {
55
/**
6-
* Implementation of MergeSort which is a stable sort, unlike QuickSort which isn't stable.
6+
* Implementation of MergeSort which is a stable sort, unlike QuickSort which isn't.
77
*/
88
public int[] sortArray(int[] nums) {
9-
//use a helder function to take in two additional parameters for the ease of recursion
9+
//use a helper function to take in two additional parameters for the ease of recursion
1010
return sort(nums, 0, nums.length - 1);
1111
}
1212

0 commit comments

Comments
 (0)