
LetCode
有时需要偏执狂
一定要搞懂,千万不要心存侥幸,否则一些问题会让你痛苦不堪(源码面前,了无秘密)。
拥有一某三分地不容易,贵在坚持。
展开
-
Remove Duplicates from Sorted Array
描述: Given a sorted array, remove the duplicates in-place such that each element appear only once and return the new length。 Do not allocate extra space for another array, you must do this by modifyin原创 2017-12-29 10:20:38 · 207 阅读 · 0 评论 -
80. Remove Duplicates from Sorted Array II
描述: Follow up for “Remove Duplicates”: What if duplicates are allowed at most twice?For example, Given sorted array nums = [1,1,1,2,2,3],Your function should return length = 5, with the first five e原创 2017-12-29 10:26:35 · 145 阅读 · 0 评论 -
33. Search in Rotated Sorted Array
描述: Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target value to search. If found in t原创 2017-12-29 10:27:58 · 220 阅读 · 0 评论 -
81. Search in Rotated Sorted Array II
描述: Follow up for “Search in Rotated Sorted Array”: What if duplicates are allowed? Would this affect the run-time complexity? How and why?Suppose an array sorted in ascending order is rotated at so原创 2017-12-29 10:30:45 · 172 阅读 · 0 评论