005 Merge Sorted Array
Given two sorted integer arrays nums1
and nums2
, merge nums2
into nums1
as one sorted array.
nums1
and nums2
, merge nums2
into nums1
as one sorted array.The number of elements initialized in nums1
and nums2
are m
and n
respectively. You may assume that nums1
has enough space (size that is equal to m + n
) to hold additional elements from nums2
.
Example 1:
Example 2:
Constraints:
0 <= n, m <= 200
1 <= n + m <= 200
nums1.length == m + n
nums2.length == n
-109 <= nums1[i], nums2[i] <= 109
Solution
Method 1
Code
Solution ideas
Put nums2 back nums1
Bubble sort
This method is simple but inefficient.
Method 2——Current best solution
Solution ideas
From The Discuss Forum and link HERE
Last updated
Was this helpful?