Simple Python 1 Line Solution
InterviewBit Problems
Add Binary Strings : Solved
pratikjain227
2019-06-22 17:24:28 UTC
#1
def addBinary(self, a, b): return str(bin( int(a, base=2) + int(b, base=2) ))[2:]