You are viewing a single comment's thread. Return to all comments →
Python Solution
1. MaxNumBin = ''.join('1' for _ in range(32)) 2. MaxNumDec = int(MaxNumBin,2) 3. return MaxNumDec - n
Seems like cookies are disabled on this browser, please enable them to open this website
Flipping bits
You are viewing a single comment's thread. Return to all comments →
Python Solution