You are viewing a single comment's thread. Return to all comments →
Javascript one-liner:
const towerBreakers = (n, m) => m === 1 || !(n % 2) ? 2 : 1
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 →
Javascript one-liner: