You are viewing a single comment's thread. Return to all comments →
Here is my Python code!
def strangeCounter(t): time = 1 value = 3 while time + value <= t: time += value value = 2 * value return value - (t - time)
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 →
Here is my Python code!