LeetCode #4: Median of Two Sorted Arrays
You're given two sorted arrays nums1 and nums2. Return the median of the two sorted arrays combined. Solve in time.
Example: nums1 , nums2 returns median .
Example: nums1 , nums2 returns median .
Constraints: Arrays up to elements each.
Try solving it before reading the hints.