pull/283/merge
Satyam Yadav 2 years ago committed by GitHub
commit 54d8e098c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,34 @@
# Hangman-Game
**Tier:** 2-Intermediate
Hangman is an old school favorite, a word game where the goal is simply to find the missing word in limited number of tries.
### Requirements
Basic understanding of loops and string manipulation is required
## User Stories
- [ ] User will be presented with a number of blank spaces representing the missing letters to be found
- [ ] User needs to guess a letter
- [ ] If the chosen letter exists in the answer, then all places in the answer where that letter appear will be revealed
- [ ] After guessing several letters, user may be able to guess what the answer is and fill in the remaining letters.
- [ ] Be warned, every time a wrong letter is guessed, user looses a chance and the number of tries decreases by one
- [ ] User needs to guess the correct word before running out of tries.
## Bonus features
- [ ] User can create his/her own customized word list
- [ ] User can add or remove words from the existing word list
- [ ] User can specify the number of tries to guess the letter
## Useful links and resources
Here's an online version of the classic hangman: https://www.hangmanwords.com/play
You can yourself play the game online on the above given website to understand it better and also could figure out the logic behind the working of the game pretty easily.
## Example projects
https://github.com/SatyamYadav-cmd/Hangman
Here is an example project which I made in Python using simple String Manipulation techniques, it runs great on Python IDLE.
NOTE: Not all the words of the dictionary are included within the code, but you can add you own words too if you wish to.
Loading…
Cancel
Save