Consider following initial board; (1) indicates there is a peg and (0) indicates empty holes.
For this initial board, we can move;
  • the peg located on (2,4) to down (2) direction.
  • the peg located on (4,2) to right (6) direction
  • the peg located on (6,4) to up (8) direction,
  • the peg located on (4,6) to left (4) direction.
Write a function to list all the possible move for the given board.

Solution Stats

16 Solutions

5 Solvers

Last Solution submitted on May 31, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...