Since we need any one of the numbers not present in the list - we can assume iterate over the input, and pick out the first misplaced combination whereint(N[i], 2) != i.

PS: it’s crucial to give the second argument2to theint(), so as to convert the binary strings to decimal numbers.

Then finally, pad the required numbers of zeros on the left side using thestr.rjust()built-in python function.

Code

Python3

def findDifferentBinaryString(self, N: List[str]) -> str:
    n = len(N)
 
    N.sort()   # N lg N
 
    for i in range(n+1):   # N+1
        if i >= n or int(N[i], 2) != i:
            res = bin(i)[2:]
            return res.rjust(n, '0')
 
    return ''

Big O Analysis

  • Runtime

    The runtime complexity here is since we are visiting over a range of .

  • Memory

    The memory usage is since we do not use any extra data structure.

— A

GitHub | Twitter