L80. Remove Duplicates from Sorted Array II
Array
Problem:
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.
Solution:
always check next two index.
fast-slow pointers
public int removeDuplicates(int[] nums) {
if(nums == null) return -1;
if(nums.length <= 2) return nums.length;
int slow = 2, fast =2;
for(fast = 2; fast < nums.length; fast++){
if(nums[slow - 2] != nums[fast]){
nums[slow] = nums[fast];
slow++;
}
}
return slow;
}
Last updated
Was this helpful?