Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ibrahimmudassar/hangmanhelper
Efficient tool for answering hangman prompt
https://github.com/ibrahimmudassar/hangmanhelper
bootstrap hangman
Last synced: 10 days ago
JSON representation
Efficient tool for answering hangman prompt
- Host: GitHub
- URL: https://github.com/ibrahimmudassar/hangmanhelper
- Owner: ibrahimmudassar
- Created: 2022-05-05T21:50:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T20:51:50.000Z (8 months ago)
- Last Synced: 2024-03-18T21:39:03.254Z (8 months ago)
- Topics: bootstrap, hangman
- Language: JavaScript
- Homepage: https://ibrahimmudassar.github.io/HangmanHelper/
- Size: 1.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangman Helper
This tool allows you to find the answer to a prompt from the 400k most common words in the english language.
Also gives you a list of letters that are your next best guesses## Usage
If you give the input a string that is 5 letters long such as "hel.." it will only output 5 letter words that start with "hel" and the last two can be any letter in the alphabet. If you also input exclude letters then those will be excluded from the analysis
### Guess
This input will include letter and non-letter inputs to simulate possible letters
#### Example
> Guess: hel.. Exclude:
- HELEN
- HELLO
- HELLS
- HELMS
- HELPS
- HELIX### Exclude
Exclude will take the letters that you give and remove all words that include any of those letters
#### Example
will exclude any words that include "s" or "i"
> Guess: hel.. Exclude: si
- HELEN
- HELLO## Roadmap
Currently this feels like a finished product. If you have extra functionality you'd like to request that you want pls pull request.
## Contributing
feel free to view the code and pull request what can be optimized.
I'm also working on making either another repo that given some jumbled letters can quickly finds some words that it could be.