27. Remove Element

Posted 暗影侠客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27. Remove Element相关的知识,希望对你有一定的参考价值。

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<nums.length){
11         if(nums[i] === val){
12             nums.splice(i,1);
13         }else{
14             i++;
15         }
16     }
17     return nums.length;
18 };

 

 
 

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

leetCode #27 remove element

27. Remove Element

#27 Remove Element

27. Remove Element

[Leetcode] 27 Remove Element

27. Remove Element