Y by
You are given a
grid with each cell colored with an integer from
to
. Two players take turns. On a turn, a player may increase any one cell’s value by a power of 2 (i.e., add 1, 2, 4, or 8 mod 16). The first player wins if, after their move, the sum of each row and the sum of each column is congruent to 0 modulo 16. Prove whether or not Player 1 has a forced win strategy from any starting configuration.


