You are viewing a single comment's thread. Return to all comments →
My rust solution:
fn towerBreakers(n: i32, m: i32) -> i32 { 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 →
My rust solution: