|
here's a solution:
1
2 3
4 5 6
7 8 9 A
B C D E F
At the beginning of the game, the ?F? square is unoccupied. The first move will be to move the ball from square 6 to square F. I?ll write it like this: ?6 -> F?. So the sequence of moves in order to win the game is this:
6 -> F
B -> 6
3 -> 8
E -> 5
2 -> 9
7 -> 2
1 -> 4
C -> E
4 -> D
E -> C
6 -> D
C -> E
F -> E
|