Binary SearchGiven a sorted array of integers and a target value, return the index of the target if found, or -1 if not present.
Median of Two Sorted ArraysGiven two sorted arrays nums1 and nums2, return the median of the two sorted arrays. The overall run time complexity should be O(log(min(m,n))).