Bernard,
click here for more info on BUG+1, the technique
aran demonstrated. While there are many ways to go, the BUG+1 is instantly recognizable, and it is not trial and error. While you're figuring out the logic behind it, you can use the perfunctory approach (as
aran mentioned):
- Code: Select all
*--------------------------------------------------*
| 9 7 5 | 8 6 4 | 1 3 2 |
| 3 2 68 | 1 5 7 | 68 9 4 |
| 46 48 1 | 3 9 2 | 5 68 7 |
|----------------+----------------+----------------|
| 16 48 9 | 7 2 3 | 48 16 5 |
| 17 3 26 | 5 4 8 | 26 17 9 |
| 47 5 28 | 6 1 9 | 248 78 3 |
|----------------+----------------+----------------|
| 5 1 4 | 9 3 6 | 7 2 8 |
| 2 9 7 | 4 8 1 | 3 5 6 |
| 8 6 3 | 2 7 5 | 9 4 1 |
*--------------------------------------------------*
Only one cell has three candidates, (248) r6c7.
Of the three candidates, find which one appears three times in the same row (or col or box) as the triple.
Place that candidate in r6c7, and the puzzle solves.
Here's the one from Sudopedia:
- Code: Select all
*--------------------------------------------------*
| 3 2 19 | 59 579 6 | 4 8 17 |
| 79 6 8 | 4 79 1 | 2 3 5 |
| 17 4 5 | 8 2 3 | 6 9 17 |
|----------------+----------------+----------------|
| 8 5 4 | 2 6 7 | 9 1 3 |
| 69 3 69 | 1 8 5 | 7 4 2 |
| 2 1 7 | 39 39 4 | 5 6 8 |
|----------------+----------------+----------------|
| 4 7 16 | 36 13 2 | 8 5 9 |
| 16 8 2 | 56 15 9 | 3 7 4 |
| 5 9 3 | 7 4 8 | 1 2 6 |
*--------------------------------------------------*
Same drill:
Only one cell has three candidates.
Of the three candidates, find which one appears three times in the same row (or col or box) as the triple.
Place that candidate in the cell that holds the triple.
Simple, and "satisfying," if immediately solving the puzzle brings any satisfaction. Also worth mentioning is that this is the first stepping stone to many other useful BUGgy techniques.