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 }