27. Remove Element

public class Solution {
    public int removeElement(int[] nums, int val) {
        int nlength = 0;
        for(int i = 0; i < nums.length; i++){
            if(nums[i] != val){
                nlength++;
            }
        }
        return nlength;
    }
}
相關文章
相關標籤/搜索