分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

27. Remove Element(js)

发布时间:2023-09-06 02:33责任编辑:胡小海关键词:js

27. Remove Element

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.

Example 1:

Given nums = [3,2,2,3], val = 3,Your function should return length = 2, with the first two elements of nums being 2.It doesn‘t matter what you leave beyond the returned length.

Example 2:

Given nums = [0,1,2,2,3,0,4,2], val = 2,Your function should return length = 5, with the first five elements of nums containing 0, 1, 3, 0, and 4.Note that the order of those five elements can be arbitrary.It doesn‘t matter what values are set beyond the returned length.
题意:给定一个数字数组和目标值,将数组中所有与目标值相等的项删除,返回操作后数组的长度
代码如下:
var removeElement = function(nums, val) { ???????var len=nums.length; ???????for(var i=0;i<len;i++){ ???????????if(nums[i]===val){ ???????????????nums.splice(i,1); ???????????????len--; ???????????????i--; ???????????} ???????} ???????return nums.length};

27. Remove Element(js)

原文地址:https://www.cnblogs.com/xingguozhiming/p/10392820.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved