After looking at this same puzzle again:
- Code: Select all
*-----------*
|146|5.8|.3.|
|572|936|184|
|398|14.|..5|
|---+---+---|
|621|3.9|45.|
|935|.64|2..|
|784|251|396|
|---+---+---|
|21.|..5|...|
|45.|61.|8..|
|86.|..3|5..|
*-----------*
*-----------------------------------------------------------*
| 1 4 6 | 5 27 8 | 79 3 279 |
| 5 7 2 | 9 3 6 | 1 8 4 |
| 3 9 8 | 1 4 27 | 67 267 5 |
|-------------------+-------------------+-------------------|
| 6 2 1 | 3 78 9 | 4 5 78 |
| 9 3 5 | 78 6 4 | 2 17 178 |
| 7 8 4 | 2 5 1 | 3 9 6 |
|-------------------+-------------------+-------------------|
| 2 1 379 | 478 789 5 | 679 467 379 |
| 4 5 39 | 6 1 27 | 8 27 39 |
| 8 6 79 | 47 279 3 | 5 1247 1279 |
*-----------------------------------------------------------*
.... I see that there is a valid "unique rectangle" in this puzzle after all.
Cells r7c3,9 and cells r8c3,9 form the rectangle. Here we see that 3 must
be the final value of either r7c3 or r7c9 (there are no other 3's in the row).
Now if 9 was the other final value for that pair of cells, then there
would be multiple solutions to the puzzle. (Given 1 solution, we could
swap the 3's and 9's in the 4 rectangle cells to come up with
another solution.) So, we can eliminate 9 as a candidate from r7c3 and r7c9.
So the 2 cells become a naked pair with candidates 3 and 7,
and we can eliminate the other 7's in that row, leaving
the puzzle in this state:
- Code: Select all
*-----------*
|146|5.8|.3.|
|572|936|184|
|398|14.|..5|
|---+---+---|
|621|3.9|45.|
|935|.64|2..|
|784|251|396|
|---+---+---|
|21.|..5|...|
|45.|61.|8..|
|86.|..3|5..|
*-----------*
*-----------------------------------------------------------*
| 1 4 6 | 5 27 8 | 79 3 279 |
| 5 7 2 | 9 3 6 | 1 8 4 |
| 3 9 8 | 1 4 27 | 67 267 5 |
|-------------------+-------------------+-------------------|
| 6 2 1 | 3 78 9 | 4 5 78 |
| 9 3 5 | 78 6 4 | 2 17 178 |
| 7 8 4 | 2 5 1 | 3 9 6 |
|-------------------+-------------------+-------------------|
| 2 1 37 | 48 89 5 | 69 46 37 |
| 4 5 39 | 6 1 27 | 8 27 39 |
| 8 6 79 | 47 279 3 | 5 1247 1279 |
*-----------------------------------------------------------*
There is still a fair amount of work to do.
Simple Suduko reports these steps:
- locked candidates (the 7's in column 7 are locked in box 3) - lets us remove other 7's from box 3
- X-wing (2's in rows 3 and 8) - lets us remove 2 from r9c8
- Exclusion based on Colors ( candidate 7) - lets us remove 7 from r9c9
- Exclusion based on Multiple Colors (candidate 7) - lets us
remove 7 from both r9c3 and r7c9
- and at last a bunch of naked singles.
So, the uniqueness approach didn't immediately solve the puzzle ...
but was helpful.