-
Notifications
You must be signed in to change notification settings - Fork 613
/
80.py
33 lines (25 loc) · 938 Bytes
/
80.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'''
Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice 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:
Given nums = [1,1,1,2,2,3],
Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively.
It doesn't matter what you leave beyond the returned length.
'''
class Solution(object):
def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
if len(nums) <= 2:
return len(nums)
prev, curr = 1, 2
while curr < len(nums):
if nums[prev] == nums[curr] and nums[curr] == nums[prev-1]:
curr += 1
else:
prev += 1
nums[prev] = nums[curr]
curr += 1
return prev+1