27. Remove Element

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27. 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.

AC代码:

class Solution(object):
    def removeElement(self, nums, val):
        current = 0
        for v in nums:
            if v != val:
                nums[current] = v
                current += 1
        return current

本题和26. Remove Duplicates from Sorted Array的第二种解法几乎一模一样,甚至比那个还简单,这里就不再赘述了。

以上是关于27. Remove Element的主要内容,如果未能解决你的问题,请参考以下文章

leetCode #27 remove element

27. Remove Element

#27 Remove Element

27. Remove Element

[Leetcode] 27 Remove Element

27. Remove Element