For any given strip (row, column, or box), if only two cells have a candidate number A in common, and only two cells have a candidate number B in common, and one of those cells has both A and B in common, then you can eliminate any other candidate besides A or B from that intersecting cell.
In the example below, the strip is represented by the fifth row. Within that row, there are only two cells with {3} as a candidate (R5C5, R5C9), and two cells with {6} as a candidate (R5C5, R5C7), and one of those cells (R5C5) is common to both sets. That intersecting cell contains {1356} as candidates, and the candidates {15} can be eliminated from that cell.
- Code: Select all
*-----------*
|..1|...|5..|
|7..|.41|2.6|
|..9|...|3.1|
|---+---+---|
|..6|..7|..4|
|..4|8.9|.2.|
|3..|4..|...|
|---+---+---|
|...|...|4.7|
|.4.|1.2|...|
|8..|5.4|9.2|
*-----------*
{246} {2368} {1} {23679} {23689} {368} {5} {47} {89}
{7} {358} {358} {39} {4} {1} {2} {89} {6}
{246} {268} {9} {267} {2568} {568} {3} {47} {1}
{1259} {12589} {6} {23} {1235} {7} {18} {3589} {4}
{15} {157} {4} {8} {1356} {9} {167} {2} {35}
{3} {125789} {2578} {4} {1256} {56} {1678} {5689} {589}
{12569} {123569} {235} {369} {3689} {368} {4} {13568} {7}
{569} {4} {357} {1} {36789} {2} {68} {3568} {358}
{8} {1367} {37} {5} {367} {4} {9} {136} {2}
John Pile (aka PhatFingers)
Sacramento, CA