(07.12.2011, 19:51)HuDu schrieb: Nice set of puzzles, thank you.
I'm starting a little bit late, but after reading the instructions I have one question to puzzle "Dominoes chess": How is the solution code for dominoes, which are placed vertically? Is it possible to give us the solution code for used example (first row, grid above)?
Rainer
I am sure that you will catch up.
You enter solution acording to given image. First domino in picture is W(hite)_pawn:B(lack)_Pawn. In example that domino is placed at G8G7 with White Pawn at G8 and Black at G7. So, first entry is G8G7.
Next on picture is W_pawn:B_rock. It is on A7B7 in solution.
Next is w_pawn:B_Night. It is (vertical) on C8C9.
And so on...
Solution code for example is:
G8G7, A7B7, C8C9, C1B1,
A1A2, G3H3, C5C4, d6D7,
E8E9, A4A3, b2c2, a5b5,
d5d4, a6b6, h8h7, e6f6,
g1g2, b8b9, a8a9, g5f5,
f7e7, e3f3, f2f1, g6h6,
f4g4, b4b3, e4e5, h2h1,
g9h9, d3c3, h4h5, d9d8,
d1d2, e1e2, f9f8, c6c7
Personaly, I use folowing method. I start with blank
,,,,
,,,,
,,,,
,,,,
,,,,
,,,,
,,,,
,,,,
,,,,
First domino in solution is W_Bishop:B_pawn on A8A9.
In picture (it has sorted dominose) it is located in 5th row 3rd place.
So, entry sholud be
,,,,
,,,,
,,,,
,,,,
,,a8a9,,
,,,,
,,,,
,,,,
,,,,
and so on.
Sorry for discomfort, but I didn't find a better way for defining solution code. I'd like to adopt a good proposal next time.