Published onMay 15, 2022[LeetCode 162] Find Peak ElementBinarySearchA peak element is an element that is strictly greater than its neighbors.
Published onDecember 15, 2021[LeetCode 34] Find First and Last Position of Element in Sorted ArrayBinarySearchstarting and ending position of a given `target` value.
Published onOctober 9, 2021[LeetCode 4] Median of Two Sorted ArraysBinarySearchGiven two sorted arrays `nums1` and `nums2` of size `m` and `n` respectively, return the median of the two sorted arrays.