Remove Duplicates from Sorted Array [Python]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Remove Duplicates from Sorted Array [Python]相关的知识,希望对你有一定的参考价值。



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.




#-*- coding:utf-8 -*-

class Solution:
    # @param {integer[]} nums
    # @return {integer}
    def removeDuplicates(self, nums):
    	l = len(nums)
    	if l == 0:
    		return 0
    	index = 0
    	i = 1
    	nums[index] = nums[0]
    	while i<l:
    		if nums[index] != nums[i]:
    			index += 1
    			nums[index] = nums[i]
    		i += 1
    	return index+1


if __name__=="__main__":
    s = Solution()
    print s.removeDuplicates(x)
 















以上是关于Remove Duplicates from Sorted Array [Python]的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 26. Remove Duplicates from Sorted Array 80. Remove Duplicates from Sorted Array II

26. Remove Duplicates from Sorted Array

26. Remove Duplicates from Sorted Array

26. Remove Duplicates from Sorted Array

#26 Remove Duplicates from Sorted Array

Remove Duplicates from Sorted Array [Python]