- Code: Select all
0 0 0 7 0 0 3 0 0
0 6 0 0 0 0 5 7 0
0 7 3 8 0 0 4 1 0
0 0 9 2 8 0 0 0 0
5 0 0 0 0 0 0 0 9
0 0 0 0 9 3 6 0 0
0 9 8 0 0 7 1 5 0
0 5 4 0 0 0 0 6 0
0 0 1 0 0 9 0 0 0
Without performing anything fancy, such as xy-wings, this reduces to:
- Code: Select all
148 48 5 | 7 14 2 | 3 9 6
14 6 2 | 9 3 14 | 5 7 8
9 7 3 | 8 6 5 | 4 1 2
----------------+----------------+----------------
3 1 9 | 2 8 6 | 7 4 5
5 <28> 6 | 14 7 14 |<28> 3 9
48 <248> 7 | 5 9 3 | 6 <28> 1
----------------+----------------+----------------
26 9 8 | 346 24 7 | 1 5 34
27 5 4 | 13 12 8 | 9 6 37
76 3 1 | 46 5 9 |<28> <28> 47
Noting the "28" that appears in cells r5c2, r6c2, r5c7, r6c8, r9c7, and r9c8; uniqueness requires that cell r6c2 = 4. Applying this and avoiding advanced methods again gets us to
- Code: Select all
14 8 5 | 7 14 2 | 3 9 6
14 6 2 | 9 3 14 | 5 7 8
9 7 3 | 8 6 5 | 4 1 2
----------------+----------------+----------------
3 1 9 | 2 8 6 | 7 4 5
5 2 6 | 14 7 14 | 8 3 9
8 4 7 | 5 9 3 | 6 2 1
----------------+----------------+----------------
26 9 8 |<346> 24 7 | 1 5 34
27 5 4 | 13 12 8 | 9 6 37
76 3 1 | 46 5 9 | 2 8 47
At this point, only the 346 in cell r7c4 prevents every row and column from attaining their lowest two-candidate cell states. It is easy to observe that a 36 in that cell would transform row 7 and column 4 into irreducible non-unique binary naked quads. Since we have a unique solution, this cannot be, so cell r7c4=4 and the rest falls out quite simply.
This appears to be a very powerful and quick method for those puzzles that reduce down to a large set of two-candidate cells with a sprinkling of multi-candidate cells thrown in.