Puzzle 5: (first Sudoku)
- Code: Select all
+-----------------------+
| . . . | . . . | . . . |
| 3 . . | . 9 1 | 4 . 6 |
| . . 7 | 3 . 4 | 2 . 5 |
|-------+-------+-------|
| . 9 . | 4 . 5 | 6 . 7 |
| 7 4 . | . 8 . | . 5 1 |
| 5 . 1 | 9 . 7 | . 3 . |
|-------+-------+-------|
| 2 . 5 | 7 . 9 | 1 . . |
| 1 . 6 | 2 3 # | . . 8 |
| . . . | . . . | . . . |
+-----------------------+
r8c6 is void of candidates because it sees all nine values for clues/givens.
If you remove clues/givens r2c6=1 and r8c1=1, then you have a valid puzzle that solves with Naked Singles.
Subsequent reductions in clues/givens are still possible.
If you remove clue/given r3c6=4, then you have a valid puzzle that solves with Naked Singles.
Subsequent reductions in clues/givens are still possible.
If you remove clue/given r7c6=9, then you have a valid puzzle that solves with Naked Singles.
Subsequent reductions in clues/givens are still possible.
Note: all three solutions are different. FWIW, all three solutions have these cells in common.
- Code: Select all
+-----------------------+
| 6 . 4 | . 7 . | 3 1 9 |
| 3 . 8 | . 9 . | 4 7 6 |
| 9 1 7 | 3 . . | 2 8 5 |
|-------+-------+-------|
| 8 9 3 | 4 1 5 | 6 2 7 |
| 7 4 2 | 6 8 3 | 9 5 1 |
| 5 6 1 | 9 2 7 | 8 3 4 |
|-------+-------+-------|
| 2 8 5 | 7 . . | 1 . 3 |
| . 7 6 | 2 3 . | 5 . 8 |
| . 3 9 | . 5 . | 7 . 2 |
+-----------------------+ # 8 solutions possible
Yuck !!!