Neunmalneun wrote:though I admit the technique is not very elegant and looks a bit like t&e
Are you sure?
My perception of T&E (or bifurcation) is to try a value and see if it causes an error. Then do the opposite.
It this case, you are looking for a cycle of implications that returns to it's origin. That is a very specific target. You can also make the search a little more specific, and look for a house containing 2 cells with candidates
ab and
abc. You can then follow the implications of forming a naked pair. (which is the equivalent of dropping c as a candidate)
This is a nice example. It is Mike Mepham's unsolvable #1, at a stage where you need a breakthrough:
Look at r3c2 & r9c2. When 2 is dropped as a candidate from r3c2, this forces r1c2=6 => r2c1=3 => r3c1=7 => r3c2<>7.
- Code: Select all
.------------------.------------------.----------- -------.
| 1 46 2456 | 9 24568 7 | 258 258 3 |
| 36 8 2456 | 1346 23456 1235 | 9 7 124 |
| 37 247 9 | 134 23458 12358| 6 1258 1248 |
:------------------+------------------+----------- -------:
| 5 3 7 | 2 168 9 | 4 168 168 |
| 4 1 26 | 367 3678 38 | 28 9 5 |
| 69 269 8 | 5 16 4 | 3 126 7 |
:------------------+------------------+----------- -------:
| 689 469 3 | 14 2459 125 | 7 2568 268 |
| 6789 5 16 | 37 2379 23 | 18 4 268 |
| 2 47 14 | 8 457 6 | 15 3 9 |
'------------------'------------------'----------- -------'
This allows you to make 3 placements and continue with other techniques.
I really like this technique.
Ruud.