Description

A Singles Chain is created by following a candidate which has only 2 occurrences in an area and creating a chain of cells with alternate colors (blue & pink). Looking at the chain allows us to see if there are potential solutions based on the cells in the chain.

If the chain contains 2 cells of the same color in the same area, it means that we have a conflict, therefore the solution cells are the ones which are colored with the opposite color.

If there is a cell which is not on the chain but also contains the candidate and it can see two different colored cells from the chain. Then we can elliminate the candidate from this cell.

Reasoning

If two cell of the same color are part of the same area, it means that that value cannot be the solution, as both cells cannot be off since one of them must be the solution.

If an off-chain cell's peers include 2 on-chain cells with different colors, then the off-chain cell cannot hold that candidate, since one of the on-chain cells will have to be the solution.

Examples

Off-Chain Example

6-Singles Chain: Off-chain cell [5,3] can see both cell [1,3] and [5,9] which are on the chain and of different colors.

That means that candidates 6 can be removed from cell [5,3].

Pink Example

8-Singles Chain: Cells [4,2] and [4,6] are both blue.

That means that the pink cells are the solutions in the chain. Cells [3,2] and [5,5] take on the value of 8.

Blue Example

5-Singles Chain: Cells [2,2] and [2,4] are both pink.

That means that the blue cells are the solutions in the chain. Cells [4,2] and [6,5] take on the value of 5.

Algorithm

This algorithm is currently not easy to do without paper and pencil. You can take a picture of the puzzle and print it, then follow the instructions below.

  1. Fill in all the pencil marks in the puzzle.
  2. For every available digit 1 to 9
    1. Look for a group which contains only 2 digit candidates.
    2. Mark one with the letter B (for blue) and the second with P (for pink).
    3. Look at the groups of the B cell and see if any of them have only 2 digit candidates. If yes, mark the other cell with P.
    4. Look at the groups of the first P cell and see if any of them have only 2 digit candidates. If yes, mark the other cell with B.
    5. Continue coloring the chain until you can no longer find a group with exactly 2 digit candidates.
    6. Once the entire chain has been finished, look to see if any group has 2 colored cells with the same color. If yes, the cells with the opposite color are the solution cells for the digit.
    7. Another approach is to look for cells which are not in the chain, but can see two colored cells of different colors. This means that that cell cannot contain the digit candidate.

Practice Puzzles

If you tap on the following links on an iOS device which has the Sudoku Tutor app installed, it will launch the app and open the practice puzzle. Tap hint once the puzzle is open to see the strategy in action.

Sample Puzzle 1
Sample Puzzle 2
Sample Puzzle 3

Next Step

Back to Sudoku Solvers or continue to next algorithm XY-Chain