You are viewing a single comment's thread. Return to all comments →
def solve(n): i = 0 while True: i += 1 x = int(bin(i)[2:]) * 9 if x % n == 0: return str(x)
Seems like cookies are disabled on this browser, please enable them to open this website
Special Multiple
You are viewing a single comment's thread. Return to all comments →