Find the median of two sorted arrays in O(log(min(m,n))). Binary search for a partition such that every element on the left of both arrays is ≤ every element on the right.
Binary Search on Partition
Instead of merging, binary search for the partition index i in the smaller array. The matching partition j in the larger array is forced by the total half-length.