hi Cenoman, DEFISE thank you for your answers;
i included the basic fish in the basics because i have often seen them equated with subsets and also the SER rating groups them together:
https://github.com/SudokuMonster/SukakuExplainer/wiki/Difficulty-ratings-in-Sudoku-Explainer-v1.2.1 3.0, 3.2, 3.4: Naked Pair, X-Wing, Hidden Pair
3.6, 3.8, 4.0: Naked Triplet, Swordfish, Hidden Triplet
5.0, 5.2, 5.4: Naked Quad, Jellyfish, Hidden Quad
as can be seen with DEFISE solution they can do a lot of eliminations; so i do basics before the first resolution state and after the last chain, what i'm not doing now but might in the future also as in DEFISE’s solution is to do basics after each chain; of course, not getting those 20 eliminations like with Cenoman’s solution makes things a bit harder and the one Cenoman found is really good.
my solution:
- Code: Select all
n8r134c5 => r1c3 <> 9
r1c5=8 - r1n1{c5 c2} - r1n5{c2 c3}
r3c5=8 - r3c2{n8 n7} - r2c3{n7 n6} - r3c1{n678 n9}
r4c5=8 - r4n4{c5 c2} - c2n1{r4 r1} - r1n5{c2 c3}
singles: ( n9r9c3 n9r3c1 n9r1c9 n9r8c4 n9r6c8 n9r4c6 n5r7c4 n1r9c5 n1r7c8 n1r2c4 n4r9c7 n4r7c3 n4r5c4 n4r3c5 n4r2c8 n1r4c7 n1r5c1 n1r1c2 n4r4c2 n5r1c3 )
intersections: n7r79c6 => r1c6 r2c6 <> 7
n6r2c13 => r2c6 r2c9 <> 6
n5r4c89 => r4c1 <> 5
n2r89c1 => r4c1 r6c1 <> 2
n7r2c13 => r3c2 <> 7
single: ( n8r3c2 )
n3r5c689 => r4c9 r6c7 <> 3
r5c6=3 - r2n3{c6 c9} - r7n3{c9 c1} - r4n3{c1 c8}
r5c8=3 -
r5c9=3 -
bte.
evidently following the example of Cenoman i had to look for a solution without using the basics eliminations:
- Code: Select all
n8r134c5 => r1c2 <> 5
r1c5=8 - c5n1{r1 r9} - c7n1{r9 r4} - r5n1{c8 c1} - c2n1{r4 r1}
r3c5=8 - r3c2{n8 n7} - r2c3{n7 n6} - r3c1{n678 n9} - r1c3{n679 n5}
r3c5=8 - c5n4{r4 r3} - c7n4{r3 r9} - c7n1{r9 r4} - c2n1{r4 r1}
then the same as above.