Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mtmiller/hanoi-game-tree
Towers of Hanoi demo game tree solution
https://github.com/mtmiller/hanoi-game-tree
Last synced: 24 days ago
JSON representation
Towers of Hanoi demo game tree solution
- Host: GitHub
- URL: https://github.com/mtmiller/hanoi-game-tree
- Owner: mtmiller
- License: gpl-3.0
- Created: 2011-12-20T11:42:30.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-20T11:43:32.000Z (about 13 years ago)
- Last Synced: 2023-03-11T05:49:08.596Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
A somewhat optimized Python implementation of the Towers of Hanoi game,
solved using an exhaustive search of a game tree. The optimization is
done on the internal representation of game state and action, not on the
choice of solution.This is created as an exercise in Python programming as well as in game
tree construction and search. Also, in the near term, to help solve a
problem on the final exam of the Stanford Online Introduction to
Artificial Intelligence.This program is free software. See the file COPYING for details.
The latest version is available at https://github.com/mtmiller/hanoi-game-tree