645. Set Mismatch
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;
}
// One pass with O(n) space
vector<int> findErrorNums(vector<int>& nums) { // time: O(n); space: O(n)
int n = nums.size();
vector<int> count(n, 0), res(2, 0);
for (int i = 0; i < n; ++i) {
res[1] ^= (i + 1) ^ nums[i];
if (++count[nums[i] - 1] == 2) {
res[0] = nums[i];
}
}
res[1] ^= res[0];
return res;
}
// Two pass with constant space
vector<int> findErrorNums(vector<int>& nums) { // time: O(n); space: O(1)
vector<int> res(2, -1);
for (int num : nums) {
if (nums[abs(num) - 1] < 0) res[0] = abs(num);
else nums[abs(num) - 1] *= -1;
}
for (int i = 0; i < nums.size(); ++i) {
if (nums[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};
}
Last updated
Was this helpful?