跳到主要内容

Remove Element

描述

Given an array and a value, remove all instances of that value in place and return the new length.

The order of elements can be changed. It doesn't matter what you leave beyond the new length.

分析

代码

# Remove Element
# 双指针
# Time Complexity: O(n), Space Complexity: O(1)
class Solution:
def removeElement(self, nums: List[int], target: int) -> int:
slow = 0
for fast in range(len(nums)):
if nums[fast] != target:
nums[slow] = nums[fast]
slow += 1
return slow

相关题目