You are viewing a single comment's thread. Return to all comments →
Scala Solution
def towerBreakers(n: Int, m: Int): Int = { // Write your code here if (m == 1 || n % 2 == 0){ 2 } else 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 →
Scala Solution