76. Remove Duplicates from Sorted Array II

MediumArray

Given an integer array nums sorted in non-decreasing order, remove some duplicates in-place such that each unique element appears at most twice. The relative order of the elements should be kept the same. Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. Return k after placing the final result in the first k slots of nums.

Examples

Input: [1,1,1,2,2,3]

Output: [1,1,2,2,3]

Explanation: At most two of each: the third 1 is dropped.

Constraints

  • 1 <= nums.length <= 3 * 10^4
  • -10^4 <= nums[i] <= 10^4
  • nums is sorted in non-decreasing order.
Loading...

Run checks all cases above. Submit evaluates all test cases.