Morgoth wrote:I tried to solve this.
- Code: Select all
. . . | 5 . 3 | 6 . 1
. . . | . 4 . | . . .
. 8 . | . 1 . | . . 9
-------+-------+------
. . 9 | 2 3 . | 7 . .
8 . . | . . . | . . 6
. . 2 | . 6 1 | 5 . .
-------+-------+------
5 . . | . 2 . | . 3 .
. . . | . 5 . | . . .
1 . 4 | 7 . 6 | . . .
After several pairs and X-wings,
it was still incomplete
and there was nothing to do with the standard methods.
So I found a new X structure.
It has 2
crossing lines with only 2 possibilities for one digit and one of them is in the crossroad.
If you try to make a square, the new lines is crossing in one box,
and if the only possibilities for the searching digit in this box lies on one of the lines, so the first cross is known.
here is an example (from the upper sudoku):
- Code: Select all
{ }, {}, {}, { }, {248 }, {}
{89}, {}, {}, {238}, {2578}, {}
{ }, {}, {}, { }, { }, {}
{ }, {}, {}, { }, { }, {}
{ }, {}, {}, { }, { }, {}
{89}, {}, {}, { }, {89 }, {}
The first crossway is between the first left column and the lowest row. There are no other possible places for
8 in these lines.
The second crossway is in the up right box where
8 is not present. For this box, only possible places for
8 lies on the second crossway and one of them must be
8. Nevertheless where is the exact place of
8 in the box, the low left corner must be
8 too, otherwise the top left and the low right will be
8, so there is no place for
8 in the up right box.
Have I invent something or I have found the hot water?