Showing posts with label Z_FAQ. Show all posts
Showing posts with label Z_FAQ. Show all posts

March 15, 2015

JOSH:Merge two sorted array(first in asc,second dec) into array in ascending order

Solution:
 Merge two sorted array into new sorrted array
input A 1,2,3,4,5(asc)
input B 10,9,8,7,6(dec)
output 1,2,3,4,5,6,7,8,9,10(asc)