Day004 - 80. Remove Duplicates from Sorted Array II

업데이트:

80. Remove Duplicates from Sorted Array II

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:

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.


내 풀이

class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
        duplicate_checker = nums[0] # nums list의 첫 번째 요소로 시작. 메모리 사용량을 줄이기위해 단일 변수 사용
        twice_checker = 1           # unique한 숫자가 몇 번 나왔는지 확인
        inplace_index = 1           # array의 요소를 바꿔야 할 부분의 index 정보
        k = 1	# 두 번까지 중복을 허용하면서 만들어진 array의 최종 길이. duplicate_checker가 단일변수이기 때문에 필요.

        for i in range(1, len(nums)):
            if nums[i] != duplicate_checker:  # unique한 값이 나왔을 때
                duplicate_checker = nums[i]   # duplicate_checker를 새로나온 값으로 바꿔줌
                nums[inplace_index] = nums[i] # 새로나온 값을 정해진 위치(inplace_index)와 교체
                twice_checker = 1	          # unique한 값이 처음 나왔기 때문에 twice_checker 초기화
                inplace_index += 1            # 값의 위치를 바꿔주었기 때문에 inplace_index를 다음 위치로 이동
                k += 1                        # 최종 array의 길이에 +1
                
            else: # 중복값이 나왔을 때
                if twice_checker == 2: # 중복값이 이미 2번 나왔다면 다음 i로 넘어감
                    continue
                else: # 중복값이 아직 한 번만 나왔다면
                    nums[inplace_index] = nums[i] # 중복값을 정해진 위치(inplace_index)와 교체
                    twice_checker += 1            # 중복값이 나왔기 때문에 twice_checker에 1 추가
                    inplace_index += 1            # 값의 위치를 바꿔주었기 때문에 inplace_index를 다음 위치로 이동
                    k += 1                        # 최종 array의 길이에 +1
                
        return k # 최종 array의 길이값을 return

이번 문제는 어제 문제에서 같은 요소가 중복으로 두 번까지 들어갈 수 있다는 추가조건이 붙은 문제이다.

저번 문제랑 똑같이 모두 순회하면서 확을 했는데 달라진 부분으로는

  1. twice_checker를 추가해서 요소가 두 번 까지 중복으로 들어갈 수 있게함.
  2. duplicate_checker를 list로 할 필요가 없이 단일 변수로 처리 (memory 절약)


# Time Complexity : \(O(N)\)

카테고리:

업데이트:

댓글남기기