80. Remove Duplicates from Sorted Array II

Description

Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length.

Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

Constraints

Approach

Examples

Given nums = [1, 1, 1, 2, 2, 3],

Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively.

It doesn't matter what you leave beyond the returned length.

Solutions

/**
 * Time complexity : O(n) since we process each element exactly once.
 * Space complexity : O(1)
 */

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

Follow up

Last updated

Was this helpful?