1. start at the first empty cell, and put 1 in it. 2. Check the entire board, and see if there are any conflicts 3. If there are coflicts on the board, increase the number in the current cell by 1 (so change 1 to 2, 2 to 3, etc) 4. If the board is clean move, start at step one again. 5. If all nine possible numbers on a given cell cause a conflict in the board, then you set this cell back to empty, go back to the previous cell, and start again from step 3 (this is where the 'backtracking' comes in). |
|
|
|
|