博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
27. Remove Element
阅读量:6820 次
发布时间:2019-06-26

本文共 672 字,大约阅读时间需要 2 分钟。

27. Remove Element

Given an array and a value, 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 in place with constant memory.

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

Example:

Given input array nums = [3,2,2,3]val = 3

Your function should return length = 2, with the first two elements of nums being 2.

 

 

1 /** 2  * @param {number[]} nums 3  * @param {number} val 4  * @return {number} 5  */ 6 var removeElement = function(nums, val) { 7      8     var i = 0; 9     10     while(i

 

 
 

转载于:https://www.cnblogs.com/huenchao/p/7686027.html

你可能感兴趣的文章
ubuntu LTSP 无盘多终端ubuntu系统
查看>>
phpstorm支持CodeIgniter自动补全
查看>>
linux磁盘批量分区格式化和挂载脚本
查看>>
第一次尝试OSCHINA博客平台
查看>>
常用html、CSS、javascript前端命名规范
查看>>
EasyMock 用法
查看>>
postgresql事务处理与并发控制
查看>>
使用Apache的ab工具对比Nginx与Apache静态页面处理能力
查看>>
linux基本命令之用户篇
查看>>
C语言基于GTK+Libvlc实现的简易视频播放器(二)
查看>>
android自定义view无法预览
查看>>
时间格式2016-12-12 12:32:12.0带毫秒转换正常yyyy-MM-dd HH:mm:ss
查看>>
你百分百不知道的四大PS技巧
查看>>
linux 查看文件内容
查看>>
oracle开机启动脚本
查看>>
python练习-raw_input()
查看>>
php 发送post请求且header中带参数bug调试
查看>>
Migrate Instance 操作详解 - 每天5分钟玩转 OpenStack(40)
查看>>
java jdbc mysql 连接失败 获取不到connection
查看>>
centos7 搭建GlusterFS
查看>>