8-piece command-line puzzle game Written in python

Eight Puzzle CLI

8-piece command-line puzzle game developed for the Artificial Intelligence discipline. Written in python, this project aims to apply the studied concepts and implement a simple intelligent agent that can solve the game.

Project execution

Dependencies

Execution

Automatic agents

Two automatic agents are implemented that use two “brute force” search algorithms:

Breadth-first Search Algorithm – BFS

Width search, graph/tree search algorithm where the exploration of all neighboring vertices is prioritized before traversing to the next depth, until a solution node is found.
68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f352f35642f427265616474682d46697273742d5365617263682d416c676f726974686d2e676966

Depth-first Search Algorithm – DFS

Depth search, graph/tree search algorithm where the exploration of one of the branches of the root node in its entirety is prioritized until a solution node is found.

 

To finish reading, please visit source site