After seeing many different Hangman implementations online, I decided to make my own. Why another one, you may ask? Well, I noticed that current implementations seemed to perform O(n^2) search and I hadn't seen anyone take advantage of multiple indirection, which allows for a different approach for the game.
The Ninja build system is used to build this project.
- Generate build files using the following
cmake . -GNinja
- Then, run ninja
ninja
- Finally, run the program
./Hangman
This code is released under the MIT License.