(This came up in the solution to a puzzle posted here.)
Examples of 4 cell non-repetitve path (shortest possible in standard Sudoku):
Given this:
- Code: Select all
[ab][ ][ ]|[bc]
[ ][ ][ ]|[ ]
[ ][ ][ ]|[ ]
------------+----
[ad][ ][ ]|[cd]
... then
'a' can be eliminated from elsewhere in column 1
'b' can be eliminated from elsewhere in row 1
'c' can be eliminated from elsewhere in column 4
'd' can be eliminated from elsewhere in row 4
Given this:
- Code: Select all
[ab][ ][ ]|[bc][ ]
[ ][ad][ ]|[ ][cd]
[ ][ ][ ]|[ ][ ]
------------+--------
... then
'a' can be eliminated from elsewhere in box 1
'b' can be eliminated from elsewhere in row 1
'c' can be eliminated from elsewhere in box 2
'd' can be eliminated from elsewhere in row 2
Three cell non-repetitive path is possible in Sudoku that include main diagonals (aka Sudoku X):
Given this:
- Code: Select all
[ab][ ][ ]|[ ]
[ ][ ][ ]|[ ]
[ ][ ][ ]|[ ]
------------+----
[ac][ ][ ]|[bc]
... then
'a' can be eliminated from elsewhere in column 1
'b' can be eliminated from elsewhere in the diagonal slanting down to the right
'c' can be eliminated from elsewhere in row 4
I would assume that this would be much more common since it requires only three cells to line up.