I am trying to write a simple A* solver in Python for a simple 8-Puzzle game.
I used this way to represent the goal of the game:
goal = [[1, 2, 3],
[8, 0, 4],
[7, 6, 5]] My problem is th
I am trying to write a simple A* solver in Python for a simple 8-Puzzle game.
I used this way to represent the goal of the game:
goal = [[1, 2, 3],
[8, 0, 4],
[7, 6, 5]] My problem is th