80_Remove Duplicates from Sorted Array II
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:
Solution
Variant of Leetcode 26.
Last updated