Your question is In-Place Merge of Sorted Arrays. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
An Applied Materials process-monitoring routine receives two nondecreasing arrays of sensor readings. The first array, nums1, has enough trailing capacity to store every value from nums2. Merge both sorted arrays directly into nums1 without allocating another array and without using sorting or built-in merge methods.
nums1 contains m valid readings followed by n placeholder slots. nums2 contains n valid readings. Modify nums1 so its first m + n positions contain all readings in nondecreasing order, and return nums1.
Implement merge_sorted_arrays(nums1, m, nums2, n).
nums1 of length m + n, integer m, integer list nums2 of length n, and integer n.nums1 list.m elements of nums1 and all elements of nums2 are sorted in nondecreasing order.def merge_sorted_arrays(nums1, m, nums2, n):