Leren wrote:BTW, Can you see the equally obvious symmetry in this one ?
- Code: Select all
*-----------*
|..6|8..|..3|
|9..|.1.|.5.|
|...|..7|...|
|---+---+---|
|8.9|...|...|
|.13|2..|..7|
|42.|.6.|.1.|
|---+---+---|
|..8|5..|..2|
|...|...|6..|
|7..|.4.|.9.|
*-----------*
Leren
It's not hard, if you know, that there are diagonal symmetries (but you should have an editor, which allows to copy/paste rectangle text for the column swaps).
First of all, box 4 must be the center, so you exchange stacks 1 and 2:
- Code: Select all
8.. ..6 ..3
.1. 9.. .5.
..7 ... ...
... 8.9 ...
2.. .13 ..7
.6. 42. .1.
5.. ..8 ..2
... ... 6..
.4. 7.. .9.
Then you know, that (from the main diagonal) 178 must correspond to 269 (boxes 19), 69 to 17 (boxes 26), and 26 to 78 (boxes 48)
The last 2 give the only possible mappings (67), (19), (28), and the other three (345) must map to themselves.
So 345 in boxes 357 must be in the diagonal, to achieve that, you can exchange rows 45 and 78, and columns 12:
- Code: Select all
.8. ..6 ..3
1.. 9.. .5.
..7 ... ...
.2. .13 ..7
... 8.9 ...
6.. 42. .1.
... ... 6..
.5. ..8 ..2
4.. 7.. .9
.
This already gives the double symmetry.
You can fill now the diagonals and transform it back by applying the swaps in the reverse order.