Try to solve the Median of Two Sorted Arrays problem.
Statement
You’re given two sorted integer arrays, nums1 and nums2, of size and , respectively. Your task is to return the median of the two sorted arrays.
The overall run time complexity should be .
Constraints: ...