接外包,有相关需求的可以联系我:Telegram | Email

Remove Duplicates from Sorted Array

该文章创建(更新)于03/15/2022,请注意文章的时效性!

文章目录[隐藏]

Description

Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same.

Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.

Return k after placing the final result in the first k slots of nums.

Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.

Solution

Double Pointer / Fast and Slow Pointer

  • O(1)
  • We don't need to change the value of nums[result:]

Code

  • submit code
class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
        # base conditiion
        if len(nums) == 0:
            return  0

        slow = 0
        fast = 0

        while fast < len(nums) :
            if nums[fast] != nums[slow]:
                slow += 1
                nums[slow] = nums[fast]
            fast += 1

        return slow + 1
  • full code to understand
class Solution:
    def removeDuplicates(self, nums):

        if len(nums) == 0:
            return  0

        slow = 0
        fast = 0

        while fast < len(nums) :
            # fast += 1
            print("fast:" + str(fast) + "\tslow:" + str(slow))
            print("nums_fast:" + str(nums[fast]) + "\tnums_slow:" + str(nums[slow]))
            print("nums:\t" + str(nums))
            if nums[fast] != nums[slow]:
                slow += 1
                nums[slow] = nums[fast]
                print("not euqal:\t" + str(nums))
            print("--------------\n\n\n")

            fast += 1

        print(nums)
        return slow + 1


nums = [1,1,2]
# [1,2,2]


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

S = Solution()
print(S.removeDuplicates(nums))

要不赞赏一下?

微信
支付宝
PayPal
Bitcoin

版权声明 | Copyright

除非特别说明,本博客所有作品均采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。转载请注明转自-
https://www.emperinter.info/2022/03/15/remove-duplicates-from-sorted-array/


要不聊聊?

我相信你准备留下的内容是经过思考的!【勾选防爬虫,未勾选无法留言】

*

*



YouTube | B站

微信公众号

👉 NewsLetter ❤️ 邮箱订阅 👈

优惠码

阿里云国际版20美元
Vultr10美元
搬瓦工 | Bandwagon应该有折扣吧?
Just My SocksJMS9272283 【注意手动复制去跳转】
域名 | namesiloemperinter(1美元)
币安 币安