Given two sorted arrays, merge them into one sorted array in non-decreasing order.
arr1 = first sorted array, arr2 = second sorted array
Merged sorted array
Example 1:
Input:
arr1 = [1,3,5] arr2 = [2,4,6]
Output:
[1,2,3,4,5,6]
Explanation:
Merge to sorted order.