You are viewing a single comment's thread. Return to all comments →
def towerBreakers(n, m): if m == 1: return 2 if n % 2 != 0: return 1 else: return 2
Seems like cookies are disabled on this browser, please enable them to open this website
Tower Breakers
You are viewing a single comment's thread. Return to all comments →