80. Remove Duplicates from Sorted Array II

2019/11/04 Leetcode

80. Remove Duplicates from Sorted Array II

Tags: ‘Array’, ‘Two Pointers’

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.

Example 1:

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.

Example 2:

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

Your function should return length = 7, with the first seven elements of nums being modified to 0, 0, 1, 1, 2, 3 and 3 respectively.

It doesn't matter what values are set beyond the returned length.

Clarification:

Confused why the returned value is an integer but your answer is an array?

Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.

Internally you can think of this:

// nums is passed in by reference. (i.e., without making a copy)
int len = removeDuplicates(nums);

// any modification to nums in your function would be known by the caller.
// using the length returned by your function, it prints the first len elements.
for (int i = 0; i < len; i++) {
    print(nums[i]);
}

Solution

快慢双指针 O(n) O(1)

可以推广到一般情况 allow k duplicates

public int removeDuplicates(int[] nums) {
    if (nums == null) return 0;
    if (nums.length <= 2) return nums.length;
    // i point to the end of result array
    // j is the runner
    int i = 0, count = 1; 
    for (int j = 1; j < nums.length; j++) {
        
        if (nums[j] != nums[j-1]) { // the same as k=1
            i++;
            nums[i] = nums[j];
            count = 1;
        } else {
            // also swap if count hasn't exceeded limit
            // replace 2 with k for general solution
            if (count < 2) { 
                i++;
                nums[i] = nums[j];
            }
            count++;
        }
    }
    return i + 1;
}

Search

    Table of Contents