We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d4f39 commit 36f1bdaCopy full SHA for 36f1bda
src/main/java/com/fishercoder/solutions/_88.java
@@ -3,6 +3,9 @@
3
public class _88 {
4
5
public static class Solution1 {
6
+ /**
7
+ * The key to reach this optimal solution is: start from the right side instead of the left.
8
+ */
9
public void merge(int[] nums1, int m, int[] nums2, int n) {
10
int i = m - 1;
11
int j = n - 1;
0 commit comments