Skip to content

Commit

Permalink
Update 88-Merge-Sorted-Array.js
Browse files Browse the repository at this point in the history
Removed console.log
  • Loading branch information
aadil42 committed Dec 24, 2022
1 parent 5ffecfe commit 1a42267
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion javascript/88-Merge-Sorted-Array.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ var merge = function(nums1, m, nums2, n) {
let k = m + n - 1;
m = m - 1;
n = n - 1;
console.log(m, n);
while (m >= 0 && n >= 0) {
if (nums1[m] > nums2[n]) {
nums1[k] = nums1[m];
Expand Down

0 comments on commit 1a42267

Please sign in to comment.