码迷,mamicode.com
首页 > 其他好文 > 详细

27. Remove Element

时间:2018-09-07 23:18:07      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:class   public   else   remove   element   record   []   lse   length   

easy

 

 

 1 class Solution {
 2     public int removeElement(int[] nums, int val) {
 3         if(nums.length == 0) return 0;
 4         if(nums.length == 1) {
 5             if(nums[0] == val) {
 6                 return 0;
 7             }else {
 8                 return 1;
 9             }
10         }
11         int i = 0, record = 0;
12         while(i < nums.length) {
13             if(nums[i] != val) {
14                 nums[record] = nums[i];
15                 record++;
16                 i++;
17             }else {
18                 i++;
19             }
20         }
21         return record;
22     }
23 }

 

27. Remove Element

标签:class   public   else   remove   element   record   []   lse   length   

原文地址:https://www.cnblogs.com/goPanama/p/9607451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!