[leetcode] 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%