- Code: Select all
+-------------+-------------+-------------+
| 12 . . | 123 123 . | . . . |
| . . . | . . . | . . . |
| . . . | . . 12 | . . . |
+-------------+-------------+-------------+
| * . . | . . 12 | . . . |
| . . . | . . . | . . . |
| . . . | . . . | . . . |
+-------------+-------------+-------------+
Because they both form a triplet with r1c4,5 the "12"s in r1c1 and r3c6 are linked - ie they can be both 1 or both 2, but not one of each. Therefore cells r1c1 and r4c6 are a remote locked pair, and the candidates 1 and 2 can be eliminated from r4c1.
It's not exactly ground-breaking, given that even normal remote locked pairs are rare to find, and in most cases the elimination will be possible using simple pairs or triplets, but it just struck me as rather neat. It could be extended to a couple more cases, such as a linking quadruplet:
- Code: Select all
+-------------+----------------+-------------+
| 12 . . | 1234 1234 34 | . . . |
| . . . | . . . | . . . |
| . . . | . . 12 | . . . |
+-------------+----------------+-------------+
| * . . | . . 12 | . . . |
| . . . | . . . | . . . |
| . . . | . . . | . . . |
+-------------+----------------+-------------+
or a longer chain.
I just wondered
- if anyone has noticed this technique before
- if it falls under some other rule that I haven't considered
and
- if anyone has spotted an incidence of this in a real puzzle, preferably where simpler methods are not possible!
Your comments would be appreciated!
Chris