Tower Breakers

  • + 0 comments

    C# SOLUTION

    if (n == 1) return 1; if (m == 1) return 2;

        return (n%2==0) ? 2 : 1;