- Code: Select all
|-----------------|
| 3 |4 8 | 5|
|8 | | 9 |
| |9 1|2 |
------------------|
|4 3| 7 | |
|6 | | 2|
| | 2 |3 4|
------------------|
| 5|1 7| |
| 7 | | 9|
|2 | 9 3| 6 |
|-----------------|
I only could solve it this far:
- Code: Select all
-----------------------------------
| 3 | 4 8 | 5 |
| 8 | 7 | 9 |
| | 9 1 | 2 |
-----------------------------------
| 4 2 3 | 7 | |
| 6 | 3 1 4 | 2 |
| | 2 | 3 4 |
--- -------------------------------
| 5 | 1 7 | 2 |
| 7 | 2 | 9 |
| 2 | 9 3 | 6 |
-----------------------------------
My pencil marks were as follows:
- Code: Select all
||===========================================||
|| 179 126 || 26 || 167 17 ||
|| 79 || || ||
||-------------------------------------------||
|| 145 124 || 356 256 || 146 136 ||
|| 6 6 || || ||
||-------------------------------------------||
|| 57 456 467 || 356 || 347 367 ||
|| || || 8 8 ||
||===========================================||
|| || 568 568 || 156 158 168 ||
|| || 9 || 89 ||
||-------------------------------------------||
|| 589 789 || || 578 578 ||
|| || || 9 ||
||-------------------------------------------||
|| 157 158 178 || 568 568 || 157 ||
|| 9 9 9 || 9 || 8 ||
||===========================================||
|| 39 468 || 46 || 48 38 ||
|| 9 || || ||
||-------------------------------------------||
|| 13 146 || 456 568 || 145 134 ||
|| 8 || || 8 58 ||
||-------------------------------------------||
|| 148 148 || 58 || 145 178 ||
|| || || 78 ||
||===========================================||
I can solve the puzzle if I insert a 3 in Row7 column9 (trial and error).
How can I solve it without "trial and error"?
LeonScott