Score : $200$ points
You are given a sequence of length $N$ consisting of integers: $A=(A_1,\ldots,A_N)$.
Find the smallest non-negative integer not in $(A_1,\ldots,A_N)$.
Input is given from Standard Input in the following format:
$N$ $A_1$ $\ldots$ $A_N$
Print the answer.
8 0 3 2 6 2 1 0 0
4
The non-negative integers are $0,1,2,3,4,\ldots$.
We have $0,1,2,3$ in $A$, but not $4$, so the answer is $4$.
3 2000 2000 2000
0