Write a program to find out the median of two sorted array.
Anonymous
No need to use the extra space. You simply need to iterate through the arrays, always choosing the smallest number, until you have gone through (n1.Length+n2.Length)/2 elements.
Check out your Company Bowl for anonymous work chats.