加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

力扣——remove element(删除元素) python实现

发布时间:2020-12-20 10:36:11 所属栏目:Python 来源:网络整理
导读:题目描述: 中文: 给定一个数组 nums?和一个值 val,你需要原地移除所有数值等于?val?的元素,返回移除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。 元素的顺序可以改变。你不需要考虑数组中超

题目描述:

中文:

给定一个数组 nums?和一个值 val,你需要原地移除所有数值等于?val?的元素,返回移除后数组的新长度。

不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。

元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。

英文:

Given an array nums and a value val,remove all instances of that value in-place 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.

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

class Solution(object):
    def removeElement(self,nums,val):
        """
        :type nums: List[int]
        :type val: int
        :rtype: int
        """
        while val in nums:
            nums.remove(val)
        return len(nums)

?

?

题目来源:力扣

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读