- Code: Select all
***|5*3|6*1
***|*4*|***
*8*|*1*|**9
-----------
**9|23*|7**
8**|***|**6
**2|*61|5**
-----------
5**|*2*|*3*
***|*5*|***
1*4|7*6|***
After several naked pears, hidden pears and x-wings it was still incomplete and there was nothing to do with the standard methods. So I found new X structure. It has 2 crossing lines with only two possibilities for one number and one of them is in the crossroad (the X-Wing have two parallel lines). If you try to make a square the new lines is crossing in one box, and if the only possibilities for the searching number in this box lies on one of the lines, so the first cross is known.
I realize that this explanation is not very clear, so hare is an example (the same 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 the number 8 in these lines.
The second crossway is in the up right box where the number 8 is not present. For this box only possible places for the number 8 lies on the second crossway and one of them must be 8. Nevertheless where is the exact place of the number 8 in the box, the low left corner must be 8 too (regarding the same logic like the X-Wing), otherwise the top left and the low right will be 8, so there is no place for 8 in the up right box.
My question here is have I invent something or I have found the hot water?
And what do you think about methods that are so complex (this can be combine with Swordfish too it interacts with a box in the same way like the X-Wing) is it proper to invent more and more methods which are approaching the brood force?