Sliding Tily is a sliding tile puzzle game.
The goal of the game is to move the main tile into the rightmost bottom position.
This game implements a few search algorithms that can solve every puzzle, with varying degrees of efficiency.
These algorithms are:
- Depth First Search (DFS)
- Breadth First Search (BFS)
- Uniform Cost Search (UCS)
- Greedy (Pure Heuristic Search)
- A-Star (A*)
The game is fully open source and available on GitHub at:
https://github.com/koshakji/tily
The goal of the game is to move the main tile into the rightmost bottom position.
This game implements a few search algorithms that can solve every puzzle, with varying degrees of efficiency.
These algorithms are:
- Depth First Search (DFS)
- Breadth First Search (BFS)
- Uniform Cost Search (UCS)
- Greedy (Pure Heuristic Search)
- A-Star (A*)
The game is fully open source and available on GitHub at:
https://github.com/koshakji/tily
Show More