Leetcode 26 Remove Duplicates from Sorted Array

编程入门 行业动态 更新时间:2024-10-27 14:22:35

Leetcode 26 <a href=https://www.elefans.com/category/jswz/34/1771152.html style=Remove Duplicates from Sorted Array"/>

Leetcode 26 Remove Duplicates from Sorted Array

Leetcode 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.

Example 1:

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.**

Example 2:

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.

Clarification:

Confused why the returned value is an integer but your answer is an array?

Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.

Internally you can think of this:

// nums is passed in by reference. (i.e., without making a copy)
int len = removeDuplicates(nums);// any modification to nums in your function would be known by the caller.
// using the length returned by your function, it prints the first len elements.
for (int i = 0; i < len; i++) {print(nums[i]);
}

来源:力扣(LeetCode)
链接:
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路解析
  • 该题的关键是要求空间复杂度为 O ( 1 ) O(1) O(1),也就是要求我们只在原列表上进行操作,不能新建列表。
class Solution:# 双指针法def removeDuplicates(self, nums: List[int]) -> int:if nums == []:return 0i = 0length = len(nums)for j in range(0, length):if nums[i] == nums[j]:j += 1else:i += 1nums[i] = nums[j]                return i + 1

这里提到了一类算法,in-place algorithm

更多推荐

Leetcode 26 Remove Duplicates from Sorted Array

本文发布于:2023-07-28 15:43:35,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1239129.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Remove   Leetcode   Array   Sorted   Duplicates

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!