Skip to content

Commit 4b37cd1

Browse files
authored
Update 088. Merge Sorted Array.java
typo in comment
1 parent e3e7487 commit 4b37cd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

088. Merge Sorted Array.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void merge(int[] nums1, int m, int[] nums2, int n) {
1616
}
1717
}
1818

19-
// even more succint
19+
// even more succinct
2020
// 1st loop: either i runs out first or j runs out first
2121
// - if i runs out first, finish with elems from j
2222
// - if j runs out first, 2nd loop won't be executed, won't need to

0 commit comments

Comments
 (0)