[Array]026 Remove Duplicates from Sorted Array

  • 分類:Array

  • 考察知識點:Array(數(shù)組遍歷)

  • 最優(yōu)解時間復(fù)雜度:O(n)

26. Remove Duplicates from Sorted Array

Given a sorted array nums, 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 by modifying the input array in-place with O(1) extra memory.

Example1:

Given 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 returned length.

Example2:

Given nums = [0,0,1,1,1,2,2,3,3,4],

Your function should return length = 5, with the first five elements of nums being modified to 0, 1, 2, 3, and 4 respectively.
It doesn't matter what values are set beyond the returned length.

代碼:

我的解法:

class Solution:
    def removeDuplicates(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        start,end=1,len(nums)
        while (end>start):
                if nums[start]==nums[start-1]:
                    nums.pop(start)
                    end-=1
                else:
                    start+=1
            
        return end

官方解法:

class Solution:
    def removeDuplicates(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if len(nums)==0:
            return 0
        else:
            i=0
            for j in range(1,len(nums)):
                if nums[j]!=nums[i]:
                    i+=1
                    nums[i]=nums[j]
            
        return i+1

討論:

1.這個題目修改了好多遍,叫我們用inplace的方法,反正就是挺簡單的
2.直接改比pop效果好,看來pop還是耗了一定的時間的

我的解法
官方解法
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容