-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoveDuplicatesFromSortedArray.py
More file actions
33 lines (31 loc) · 1 KB
/
Copy pathRemoveDuplicatesFromSortedArray.py
File metadata and controls
33 lines (31 loc) · 1 KB
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
"""
@Project: leetcode
@file: RemoveDuplicatesFromSortedArray.py
@author: AC
@time: 2016/5/9
@Description: 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 in place with constant memory.
For example, Given input array nums = [1,1,2], Your function should return length = 2,
with the first two elements of nums being 1 and 2 respectively.
It doesn't matter what you leave beyond the new length.
"""
class Solution(object):
def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
l = len(nums)
if l < 2:
return l
pre = 1
for i in xrange(1, l):
if nums[i-1] < nums[i]:
nums[pre] = nums[i]
pre += 1
return pre
s = Solution()
nums = [1, 1, 2, 3, 3, 3, 5, 9]
result = s.removeDuplicates(nums)
print result, nums[:result]