26. Remove Duplicates from Sorted Array
题目难度: 简单
Given a sorted array nums, remove the duplicates 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 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 | // **nums** is passed in by reference. (i.e., without making a copy) |
解题思路
由于数组已经是排序数组了,所以直接判断当前索引后面的元素是否与当前元素相等即可剔除重复元素。
Solution
1 | class Solution: |