I am trying to create a solvability function for a game algorithm. Basically a function that returns true or false for a given game if it is solvable or not.
The game is a type of lights-out game. Basically You have a M*N grid of buttons. When the game starts, a random number or a stored pattern of these lights is switched on. Pressing any of the lights will toggle a square of four buttons including the pressed button.
so I'm looking for an algorithm that returns true if we can turn off all the lights and return false if we can't do this.
The number of on-lights in each row and each column must be even (where '0' is considered 'even' as well).
Proof: suppose you must press 2 horizontal adjacent buttons. If you start out with 1 light only, at the far left, no matter what you do, you will end up with a single light on. On the other hand, as soon as you have 2 lights at any distance, you can 'move' one light close to the other until they are adjacent, at which point you can switch them both off.
The same is true for vertically adjacent buttons, and by extension for a 2x2 button grid: whenever you switch off any single certain light, the other toggles ensure the number of on-lights stays a multiple of 2 per row and column.
This, for example, is solvable:
and this one is not (note the odd numbers in some columns and rows):