Data Structure and Algorithms | 2020-05-20 Leetcode 209. Minimum Size Subarray Sum Question Find the smallest continuous sub-array such that the sum of the sub- ...
Data Structure and Algorithms | 2020-05-07 Leetcode 162. Find Peak Element Question Give an array, find any peak. The peak is larger than its left and right neighbors. Simi ...
Data Structure and Algorithms | 2020-05-05 Leetcode 153. Find Minimum in Rotated Sorted Array Question Given a rotated sorted array, find the smallest number. Similar Questions Medium - 33. S ...
Data Structure and Algorithms | 2020-01-13 Leetcode 81. Search in Rotated Sorted Array II Question Follow up question on 33. Search in Rotated Sorted Array. This time the array may contain ...
Data Structure and Algorithms | 2019-12-29 Leetcode 74. Search a 2D Matrix Question Search a value in an m x n matrix, determine if it exists. Similar Questions Medium - 24 ...
Data Structure and Algorithms | 2019-11-24 Leetcode 34. Find First and Last Position of Element in Sorted Array Question Find the first and last location of target value in a sorted array. Algorithm need to run ...
Data Structure and Algorithms | 2019-11-23 Leetcode 33. Search in Rotated Sorted Array Question The original array is sorted, but rotated at some pivot index. We need to find the target ...