Merge two sorted arrays 2016-07-15 algorithm Write a function to return an array that two arrays are merged inexample:mergeSortedArray([2, 5, 6, 9], [1, 2, 3, 29]);// [1, 2, 2, 3, 5, 6, 9, 29] Newer Find point Older Remove Duplicate