
Given a sorted array nums, 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 modifying the input array in-place with O(1) extra memory.
Example 1:
1 |
Given nums = [1,1,2], |
Example 2:
1 |
Given nums = [0,0,1,1,1,2,2,3,3,4], |
Clarification:
Confused why the returned value is an integer but your answer is an array?
Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.
Internally you can think of this:
1 |
|
Solution:Vector在日常写程序用的比较多,所以看一眼就有了点想法。
传入的是vector的引用,需要在原数组上操作,vector已经排序了,比较索引为i和i+1的元素是否相同就可以,因为美股元素只能出现一次,所以有两种解决办法,遇到相同的元素移到最后或者删除,移到最后还要额外增加一个变量来计算不同元素的数量,所以直接用删除的方式。
需要注意的就是vector的删除问题,当删除索引为i的元素时,i后面的元素都会向前移动一位,要注意i++的索引的变化。
1 |
class { |
| Time Submitted | Status | Runtime | Memory | Language |
|---|---|---|---|---|
| a few seconds ago | Accepted | 156 ms | 9.9 MB | cpp |
大神的solution:
1 |
class { |
| Time Submitted | Status | Runtime | Memory | Language |
|---|---|---|---|---|
| a few seconds ago | Accepted | 24 ms | 9.8 MB | cpp |




近期评论