27. Remove Element
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27. Remove Element相关的知识,希望对你有一定的参考价值。
和26题Remove Duplicates from Sorted Array是一样的
1 public int removeElement(int[] nums, int val) { 2 if(nums == null || nums.length == 0) { 3 return 0; 4 } 5 int cnt = 0; 6 for(int i = 0; i < nums.length; i++) { 7 if(nums[i] != val) { 8 nums[cnt] = nums[i]; 9 cnt++; 10 } 11 } 12 return cnt; 13 }
以上是关于27. Remove Element的主要内容,如果未能解决你的问题,请参考以下文章