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
Inputnums = [1,2,2,4]
Output[2,3]
The number 2 occurs twice, and the number 3 is missing from the set.
Example 2
Inputnums = [1,1]
Output[1,2]
The number 1 occurs twice, and the number 2 is missing from the set.

Constraints

  • 2 <= nums.length <= 10^4
  • 1 <= nums[i] <= 10^4

Asked at 7 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate