The objective of Sudoku is to fill every square in the game board (see below) such that the final game state meets the following constraints:
1. For an n 2 × n 2 board, every cell must contain a number between 1 and n 2 (inclusive). For example, in the 9×9 board below, every cell must contain a value between 1 and 9.
2. Every row must contain only unique values. In other words, there can only be one of each value in a row.
3. Every column must contain only unique values.
4. Every inner n × n board delineated by bold bordering must contain only unique values.
5. You must work around the starting values in the board (see below).
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |