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. It does not matter what you leave beyond the first k
elements.
Return k
after placing the final result in the first k
slots of nums
.
Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.
Custom Judge:
The judge will test your solution with the following code:
1
2
3
4
5
6
7
8
9
int[] nums = [...]; // Input array
int[] expectedNums = [...]; // The expected answer with correct length
int k = removeDuplicates(nums); // Calls your implementation
assert k == expectedNums.length;
for (int i = 0; i < k; i++) {
assert nums[i] == expectedNums[i];
}
If all assertions pass, then your solution will be accepted.
Example 1:
Input: nums = [1,1,1,2,2,3] Output: 5, nums = [1,1,2,2,3,_] Explanation: Your function should return k = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively. It does not matter what you leave beyond the returned k (hence they are underscores).
Example 2:
Input: nums = [0,0,1,1,1,1,2,3,3] Output: 7, nums = [0,0,1,1,2,3,3,,] Explanation: Your function should return k = 7, with the first seven elements of nums being 0, 0, 1, 1, 2, 3 and 3 respectively. It does not matter what you leave beyond the returned k (hence they are underscores).
Constraints:
1 <= nums.length <= 3 * 104
-104 <= nums[i] <= 104
nums
is sorted in non-decreasing order.최대 3 * 10^4 개의 정수가 들어있는 배열을 중복된 값 최대 2개를 가질 수 있는 순서를 유지한 배열로 만들고, 해당 배열의 값 개수를 리턴하세요.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public:
int removeDuplicates(vector%3Cint%3E& nums) {
int actualIdx = 2;
int before2;
int before1 = nums[0];
for (int cursorIdx = 2; cursorIdx < nums.size(); cursorIdx++) {
before2 = before1;
before1 = nums[cursorIdx-1];
nums[actualIdx] = nums[cursorIdx];
if (!(nums[cursorIdx] == before1 && before1 == before2)) {
actualIdx++;
}
}
return min(actualIdx, (int)nums.size());
}
}
이전 문제에서 단 하나의 조건 (중복 최대 2개)만 생겼을 뿐인데 생각할 거리가 많아졌어요.
고등학교, 대학교,,, 어린 시절에 비해 확실히 머리가 많이 굳은 것이 느껴지네요. 머리가 이전처럼 잘 돌아가도록 꾸준히 풀어야겠어요 ㅠㅠ