leetcode_025 Remove Duplicates from Sorted Array

Posted

tags:

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

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.


 

python实现:

class Solution(object):
    def removeDuplicates(self, nums):
        length = 0
        for i in range(0, len(nums)):
            if i != 0 and nums[i] == nums[i-1]:
                continue
            else:
                nums[length] = nums[i]
                length += 1
        return length
        

 


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

LeetCode OJ_题解(python):027-Remove Element ArrayEasy

乘风破浪:LeetCode真题_027_Remove Element

LeetCode-025-K 个一组翻转链表

leetcode?python 203. Remove Linked List Elements

乘风破浪:LeetCode真题_026_Remove Duplicates from Sorted Array

LeetCode025. Reverse Nodes in k-Group