2024-01-22 Daily Challenge

Today I have done leetcode's January LeetCoding Challenge with cpp.

January LeetCoding Challenge 22

Description

Set Mismatch

You have a set of integers s, which originally contains all the numbers from 1 to n. Unfortunately, due to some error, one of the numbers in s got duplicated to another number in the set, which results in repetition of one number and loss of another number.

You are given an integer array nums representing the data status of this set after the error.

Find the number that occurs twice and the number that is missing and return them in the form of an array.

 

Example 1:

Input: nums = [1,2,2,4]
Output: [2,3]

Example 2:

Input: nums = [1,1]
Output: [1,2]

 

Constraints:

  • 2 <= nums.length <= 104
  • 1 <= nums[i] <= 104

Solution

class Solution {
public:
  vector<int> findErrorNums(vector<int>& nums) {
    int len = nums.size();
    vector<bool> used(len);
    int loss = -1;
    int dup = -1;
    for(auto i : nums) {
      if(!used[i - 1]) used[i - 1] = true;
      else dup = i;
    }
    for(int i = 0; i < len; ++i) {
      if(!used[i]) loss = i + 1;
    }
    return vector<int>{dup, loss};
  }
};

// Accepted
// 49/49 cases passed (81 ms)
// Your runtime beats 49.41 % of cpp submissions
// Your memory usage beats 50.7 % of cpp submissions (21.6 MB)