Remove Duplicates from Sorted Array II
Medium 原题链接:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/
最后更新于
这有帮助吗?
Medium 原题链接:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/
最后更新于
这有帮助吗?
原题链接:
Given a sorted array nums, remove the duplicates 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 with O(1) extra memory.
Given nums = [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.
Given nums = [0,0,1,1,1,1,2,3,3],
Your function should return length =7, with the first five elements of nums being 0,01,1,2,3 and 3 respectively,
It doesn't matter what you leave beyond the returned length.
注意
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.
分析: