leftbeam.blogg.se

Solving peg solitaire
Solving peg solitaire







Efficiently Solving the Diamond-41 BoardĪs the name suggests, the Diamond-41 board consists of 41 holes. A simple solver for the English variant can be found in english.cpp. The solution for the diamond shaped board is even more tricky. Many players need quite a few attempts in order to find the solution for the English peg solitaire. The English variant is shown in the figure below.Įven though the rules of the game are rather simple, finding a solution is not trivial. The English variant, as shown below, has one additional rule: In order to win, it is not sufficient that only one peg is left in the end this peg also has to be located in the center of the board. This is the case when there is no pair of pegs which are orthogonally adjacent or if only one peg is left. Once no move is possible any longer, the game is over. So, in each move, one peg jumps 2 holes further and the peg in-between is removed. The neighboring peg is then removed, leaving an empty hole. In each move the player selects one peg and jumps - either vertically or horizontally, not diagonally - with this peg over a directly neighboring one into an empty hole. For example, the English variant consists of 33 holes while the typical diamond variant consists of 41 holes.

solving peg solitaire

The number of holes depends on the board variant. Peg solitaire is a one-player game played on a board with $$n$$ holes and $$n-1$$ pegs. Many of us might now the board game peg solitaire and might even have one of its many variants at home.









Solving peg solitaire