https://github.com/suvasish114/8-puzzle
8 puzzle problem using artificial intelligence
https://github.com/suvasish114/8-puzzle
8puzzle artificial-intelligence astar-search-algorithm game python3
Last synced: 3 months ago
JSON representation
8 puzzle problem using artificial intelligence
- Host: GitHub
- URL: https://github.com/suvasish114/8-puzzle
- Owner: suvasish114
- Created: 2022-04-03T11:59:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T14:56:04.000Z (over 2 years ago)
- Last Synced: 2025-02-05T02:33:50.170Z (4 months ago)
- Topics: 8puzzle, artificial-intelligence, astar-search-algorithm, game, python3
- Language: Python
- Homepage:
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 8 puzzle
8-puzzle problem visualization using artificial intelligence (A* search)## Visualization
```txtstart
1 2 3
4 0 5
7 8 6
|
- - - - - - - - - - - - -
| | | |
1 2 3 1 2 3 1 2 3 1 0 3
0 4 5 4 5 0 4 8 5 4 2 5
7 8 6 7 8 6 7 0 6 7 8 6
|
- - - - - - - - -
| | |
1 2 3 1 2 3 1 2 0
4 5 6 4 0 5 4 5 3
7 8 0 7 8 6 7 8 6
goal```
## Output
