The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another number in the set, which results in repetition of one number and loss of another number.
Given an array nums representing the data status of this set after the error. Your task is to firstly find the number occurs twice and then find the number that is missing. Return them in the form of an array.
Example 1:
Input: nums = [1,2,2,4]
Output: [2,3]
Note:
The given array size will in the range [2, 10000].
The given array's numbers won't have any order.
暴力解先紀錄每個數字出現的次數,然後再掃描第二遍找到出現零次和出現兩次的數就是所求。
// Two pass naive method
vector<int> findErrorNums(vector<int>& nums) { // time: O(n); space: O(n)
int n = nums.size();
vector<int> record(n, 0), res(2, -1);
for (int num : nums) ++record[num - 1];
for (int i = 0; i < n; ++i) {
if (record[i] == 2) res[0] = i + 1;
else if (record[i] == 0) res[1] = i + 1;
}
return res;
}
// Two pass with constant space
vector<int> findErrorNums(vector<int>& nums) { // time: O(n); space: O(1)
int n = nums.size();
// put the numbers to their correct positions
for (int i = 0; i < n; ++i) {
while (nums[i] != nums[nums[i] - 1]) swap(nums[i], nums[nums[i] - 1]);
}
for (int i = 0; i < n; ++i) {
if (nums[i] != i + 1) return {nums[i], i + 1};
}
return {-1, -1};
}