Introduction - If you have any usage issues, please Google them yourself
Problem description:
Set X[0:n-1] and Y[0:n-1] for 2 arrays, each of which has n sorted Numbers. Try to design one
O(logn) time algorithm to find the median of the 2n Numbers of X and Y.
For example, when n= 7, X= [1, 3, 6, 7, 8, 9, 10]; Y= [2, 4, 5, 11, 12, 13, 14], X and Y
The median is 7.