持续更新中。。。
【leetcode Top Interview Questions】, 【array】分类下面:
easy 13道,medium 22道(lock 2),hard 5道 (2019.03.31)
【easy】(13道题)
26. Remove Duplicates from Sorted Array 对排序的数组删除重复的元素
53. Maximum Subarray 寻找sum最大的子数组
88. Merge Sorted Array 合并两个排序数组
121. Best Time to Buy and Sell Stock 股票最佳买入和卖出时间
122. Best Time to Buy and Sell Stock II 股票最佳买入和卖出时间
169. Majority Element 求数组中满足出现次数大于等于n/2的元素
217. Contains Duplicate 判断数组中是否有重复元素
283. Move Zeroes 将数组中值为0的元素移动到最后
【medium】(20道题)
238. Product of Array Except Self 求数组每个位置都乘以除了自己以外其他位置的元素
287. Find the Duplicate Number 寻找一个重复的元素
62. Unique Paths 计算从二维数组(0,0)->(m-1,n-1)路径数量
11. Container With Most Water 最多存水量
380. Insert Delete GetRandom O(1)
105. Construct Binary Tree from Preorder and Inorder Traversal
34. Find First and Last Position of Element in Sorted Array
33. Search in Rotated Sorted Array
79. Word Search 在二维矩阵中寻找某个word是否出现
152. Maximum Product Subarray 最大乘积子数组
【hard】(5道题)
128. Longest Consecutive Sequence 寻找最长连续子数组
84. Largest Rectangle in Histogram 寻找最大的矩形
41. First Missing Positive 寻找第一个缺失的正数
4.Median of Two Sorted Arrays (难,最后在看)