Minimum Excluded

In a given set of integers, the “mex” or the minimum excluded value is the smallest non-negative int…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

I am getting runtime error for the following code:

    BitSet b = new BitSet(1000000001);
    Reader sc = new Reader();
    int n = sc.nextInt();
    while(n-->0) b.set(sc.nextInt());
    System.out.println(b.nextClearBit(0));

any idea why?