0
点赞
收藏
分享

微信扫一扫

LeetCode-645. Set Mismatch

芷兮离离 2022-08-10 阅读 71


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 anothernumber 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:

  1. The given array size will in the range [2, 10000].
  2. The given array's numbers won't have any order.

题解:

class Solution {
public:
vector<int> findErrorNums(vector<int>& nums) {
int n = nums.size();
map<int, int> dic;
int dup, miss;
for (int i = 0; i < n; i++) {
if (dic.find(nums[i]) == dic.end()) {
dic.insert(pair<int, int>(nums[i], 1));
}
else {
dup = nums[i];
}
}
for (int i = 1; i <= n; i++) {
if (dic.find(i) == dic.end()) {
miss = i;
}
}
return vector<int>{dup, miss};
}
};

 

举报

相关推荐

0 条评论