You are viewing a single comment's thread. Return to all comments →
def solve(n): # Write your code here delta = math.sqrt(1+8*n) - 1 if delta%2: return "Better Luck Next Time" return f"Go On Bob {int(delta//2)}"
Seems like cookies are disabled on this browser, please enable them to open this website
Stepping Stones Game
You are viewing a single comment's thread. Return to all comments →