You are viewing a single comment's thread. Return to all comments →
def strangeCounter(t): tme, val = 1, 3 while t > tme + val - 1: tme += val val *= 2 return val - (t - tme)
Seems like cookies are disabled on this browser, please enable them to open this website
Strange Counter
You are viewing a single comment's thread. Return to all comments →