반응형
26. Remove Duplicates from Sorted Array
Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same. Then return the number of unique elements in nums.
Consider the number of unique elements of nums to be k, to get accepted, you need to do the following things
Change the array nums such that the first k elements of nums contain the unique elements in the order they were present in nums initially. The remaining elements of nums are not important as well as the size of nums.
Return k.
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,2]
Output: 2, nums = [1,2,_]
Explanation: Your function should return k = 2, with the first two elements of nums being 1 and 2 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,2,2,3,3,4]
Output: 5, nums = [0,1,2,3,4,_,_,_,_,_]
Explanation: Your function should return k = 5, with the first five elements of nums being 0, 1, 2, 3, and 4 respectively.
It does not matter what you leave beyond the returned k (hence they are underscores).
Code
class Solution {
func removeDuplicates(_ nums: inout [Int]) -> Int {
nums = nums.reduce(into: []) { (uniqueNums, num) in
if !uniqueNums.contains(num) {
uniqueNums.append(num)
}
}
return nums.count
}
}
해당 문제는 정렬된 배열에서 중복을 제거하는 문제이다.
reduce(into:) 메서드를 사용하여 배열 nums의 요소를 순회를 하게 했으며 초기값으로 빈 배열 []를 사용했다.
여기서 uniqueNums는 중복이 제거된 배열을 의미하며 num은 배열 nums의 각 요소를 나타낸다.
if문에서는 현재 요소 num이 중복이 제거된 배열 uniqueNums에 포함되어 있지 않은 경우에만 uniqueNums에 추가한다.
마지막으로 중복제거된 nums의 count 값을 반환한다
처음 문제를 보고 간단하게 아래와 같은 코드로 문제를 풀 수 있다고 생각했다.
class Solution {
func removeDuplicates(_ nums: inout [Int]) -> Int {
nums = Array(Set(nums)).sorted()
return nums.count
}
}
물론 해당 코드로 정답을 입력해도 테스트 케이스는 통과가 된다.
문제를 보면 순서는 동일하게 유지되어 있어야 된다는 조건이 붙어있다.
만약 예시와 같이 내림차순으로 정렬되어있는 예시가 아니라 비내림차순으로 되어있는 배열이 주어진다면 틀린 정답이 된다.
그러한 이유로 위에 코드를 선택해 답안을 제출했다.
공부하는 공돌이, 공공돌입니다🐻
@sheep1sik
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
1. Two Sum (1) | 2024.01.11 |
---|---|
1929. Concatenation of Array (2) | 2024.01.10 |