18 May Markham Saturday 14:00 Java Homework 21.05.15.
Given two sorted arrays as below, create a third array made from first and the second array
Input arr1 = [1,3,5,7,9,15] arr2 = [4,8,12,13] Output arr3 = [1,3,4,5,7,8,9,12,13,15] Explanation arr3 is the combination of arr1 and arr2. It is sorted.
Sorry, the comment form is closed at this time.