i found a virus pattern loop in my puzzle that involves the hidden quad intersection on the pattern 3,5,8,9
this is exactly identical to the pattern first pointed out and
used to solve Easter Monster
listed on this site.
http://sudoku.com.au/sudokutips.aspx?Go=T3-1-1992&category=sudoku
if i read and understand how it works correctly.
which removes 17
candidates at once.
inital puzzle.
- Code: Select all
*-----------*
|5..|...|..9|
|.2.|1..|.7.|
|..8|...|3..|
|---+---+---|
|.4.|..2|...|
|...|.5.|...|
|...|7.6|.1.|
|---+---+---|
|..3|...|8..|
|.6.|..4|.2.|
|9..|...|..5|
*-----------*
- Code: Select all
candiates
*-----------------------------------------------------------------------------*
| 5 137A 1467 | 23468 234678 378 | 1246 468C 9 |
| 346A 2 469D | 1 34689 3589 | 456B 7 468C |
| 1467 179D 8 | 24569 24679 579 | 3 456B 1246 |
|-------------------------+-------------------------+-------------------------|
| 13678 4 15679 | 389 1389 2 | 5679 35689 3678 |
| 123678 13789 12679 | 3489 5 1389 | 24679 34689 234678 |
| 238 3589 259 | 7 3489 6 | 2459 1 2348 |
|-------------------------+-------------------------+-------------------------|
| 1247 157B 3 | 2569 12679 1579 | 8 469D 1467 |
| 178C 6 157B | 3589 13789 4 | 179D 2 137A |
| 9 178C 1247 | 2368 123678 1378 | 1467 346A 5 |
*-----------------------------------------------------------------------------*
A = 3
B = 5
C = 8
D = 9
intersections removed and reduce the grid to this placement
- Code: Select all
*-----------------------------------------------------------------------------*
| 5 137 1467 | 23468 234678 378 | 12 468 9 |
| 346 2 469 | 1 389 3589 | 456 7 468 |
| 1467 179 8 | 24569 24679 579 | 3 456 12 |
|-------------------------+-------------------------+-------------------------|
| 13678 4 15679 | 389 1389 2 | 5679 3589 3678 |
| 123678 389 12679 | 3489 5 1389 | 24679 389 234678 |
| 238 3589 259 | 7 3489 6 | 2459 1 2348 |
|-------------------------+-------------------------+-------------------------|
| 24 157 3 | 2569 12679 1579 | 8 469 1467 |
| 178 6 157 | 3589 389 4 | 179 2 137 |
| 9 178 24 | 2368 123678 1378 | 1467 346 5 |
*-----------------------------------------------------------------------------*
is this correct so far?