Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saiteja-talluri/tower-of-hanoi-solver

GUI for tower of hanoi with hint option giving the best move from any state of the game
https://github.com/saiteja-talluri/tower-of-hanoi-solver

bfs-algorithm hanoi-towers racket

Last synced: 16 days ago
JSON representation

GUI for tower of hanoi with hint option giving the best move from any state of the game

Awesome Lists containing this project

README

        

# Tower-of-Hanoi-Solver

Constructed a graph that represents the entire game states in which the nodes are possible states and an edge exists between two nodes if there is a valid move between the states using Graph library in Racket

Developed an intuitive GUI using 2htdp/image and 2htdp/universe packages to show the live preview

The solver is implemented to give the next possible best move from any state using Breadth First Search