python 26从Sorted Array.py中删除重复项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 26从Sorted Array.py中删除重复项相关的知识,希望对你有一定的参考价值。

# Time: O(n)
# Space: O(1)
# Remove Dupicates from sorted Array 
'''
 0 1 2 3 4
[1,1,2,2,3]

last = 0
i = 1
'''

class Solution(object):
    def removeDuplicates(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if not nums:
            return 0
        
        last, i = 0, 1
        while i < len(nums):
            if nums[last] != nums[i]:
                last += 1
                nums[last] = nums[i]
            i += 1
        return last + 1 

以上是关于python 26从Sorted Array.py中删除重复项的主要内容,如果未能解决你的问题,请参考以下文章

java 26.从Sorted Array.java中删除重复项

java 26.从Sorted Array.java中删除重复项

java 26.从Sorted Array.java中删除重复项

java 26.从Sorted Array.java中删除重复项

java 26.从Sorted Array.java中删除重复项

java 26.从Sorted Array.java中删除重复项