您的位置:首页 > 其它

26. Remove Duplicates from Sorted Array

2016-07-26 19:36 387 查看

26. Remove Duplicates from Sorted Array

Leetcode link for this question

Discription:

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.

Analyze:

Code 1 :

class Solution(object):
def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
if not nums:
return 0
p=0
for i in nums:
if nums[p]!=i:
p+=1
nums[p]=i
return p+1


Submission Result:

Status: Accepted

Runtime: 96 ms

Ranking: beats 80.80%

Code 2 :

class Solution(object):
def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
le=len(nums)
if le<2:
return le
i=1
while i<len(nums):
if nums[i]==nums[i-1]:
nums.pop(i)
else:
i+=1
return len(nums)


Submission Result:

Status: Accepted

Runtime: 144 ms

Ranking: beats 17.31%
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: