#2 testcase not passed
here is the code : https://ide.codingblocks.com/s/53574
Median of Sorted Arrays (#2 testcase not passed)
You have to find the median of two sorted arrays without using an extra space .
Hint is - 1) use the information given that two arrays are sorted.
2) The median of new array will always lie between the medians of those two original arrays.
Eg. if m1 is the median for 1st array and m2 is the median for second array and cm - new array median , then
m1<= cm <= m2