26. Remove Duplicates from Sorted Array

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.

Do not allocate extra space for another array, you must do this in place with constant memory.

For example,

Given input array nums = [1,1,2],

Your function should return length = 2, with the first two elements of nums being 1 and 2 respectively. It doesn't matter what you leave beyond the new length.

Related issue: 80. Remove Duplicates from Sorted Array II

public class Solution {
    public int removeDuplicates(int[] nums) {
        if(nums == null) return 0;
        if(nums.length <=1) return nums.length;
        int i =0;
        int j= 1;
        for(; j<nums.length;){
            if(nums[i] == nums[j]) j++;
            else nums[++i] = nums[j++];
        }
        return ++i;
    }
}

another version

public class Solution {
    public int removeDuplicates(int[] nums) {
        if(nums == null) return 0;
        if(nums.length <=1) return nums.length;

        int l=0;
        for(int r =1; r< nums.length; r++){
            if(nums[r] != nums[l])
                nums[++l] = nums[r];
        }
        return l+1;
    }
}

results matching ""

    No results matching ""