You are viewing a single comment's thread. Return to all comments →
Simple code:
def strangeCounter(t): start_value = 3 while start_value - 2 <= t: start_value *= 2 return start_value - 2 - t
Strange Counter
You are viewing a single comment's thread. Return to all comments →
PY
Simple code: