80.remove-duplicates-from-sorted-array-ii

Detail explanation for updated two-pointer, runtime 93.73 %

Xu LIANG
LeetCode Cracker
1 min readMar 29, 2019

--

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:

Example 2:

Solution 1: updated two-pointer

This question is an updated version of question 26 (you should read this first). And the cracking method is basically the same. The only difference is that we need to start two pointers with index 2 and we only update nums[slow when nums[fast] != nums[slow-2].

--

--

Xu LIANG
LeetCode Cracker

I’m an engineer focusing on NLP and Data Science. I write stuff to repay the engineer community. You can find me on linkedin.com/in/xu-liang-99356891/