Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Addition with carrying, and, xor solution in Creative category for Funny Addition by ermichin158
def checkio(data):
while data[1]:
data = [data[0] ^ data[1], (data[0] & data[1]) << 1]
return data[0]
Dec. 27, 2016
Comments: