One Repeating And One Missing

easy
1. You are given an array of length n containing numbers from 1 to n.
2. One number is present twice in array and one is missing.
3. You have to find these two numbers.

Input Format

A number n a1 a2.. n numbers

Output Format

Missing number Repeating Number

Constraints

1 <= n <= 10^9
1 <= a1,a2.. <= 10^9 

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
7
1 
3 
4 
5 
1 
6 
2
Output
Missing Number -> 7
Repeating Number -> 1
Previous
All Repeating Three Times Except One
Next
Flip Bits To Convert A To B

Related Questions