645. Set Mismatch
LeetCode 645. Set Mismatch
Description
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:
Example 2:
Constraints:
2 <= nums.length <= 104
1 <= nums[i] <= 104
Tags
Hash Table, Math
Solution
We try to visit all nums[nums[i]-1]
. emulating that we move nums[i]
to i
th position. Every time we invert the element we visited. If this number is encountered the second time, we find the duplicate, which is the first element of the output.
Then we traverse the array after inversion and find the only positive element. This element's index is the missing number, a.k.a the second element of the output.
Complexity
Time complexity:
Space complexity:
Code
Reference
Last updated
Was this helpful?