https://github.com/mannasoumya/jumble-word-noob
Noob Implementation of Jumble Word against a small English Dictionary
https://github.com/mannasoumya/jumble-word-noob
fun jumble-solver jumbled-letters jumbled-text jumbledword jumblesolver jumbleword python python-3 python3
Last synced: 3 months ago
JSON representation
Noob Implementation of Jumble Word against a small English Dictionary
- Host: GitHub
- URL: https://github.com/mannasoumya/jumble-word-noob
- Owner: mannasoumya
- Created: 2020-08-13T05:02:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T06:33:58.000Z (almost 5 years ago)
- Last Synced: 2025-01-23T01:13:45.843Z (5 months ago)
- Topics: fun, jumble-solver, jumbled-letters, jumbled-text, jumbledword, jumblesolver, jumbleword, python, python-3, python3
- Language: Python
- Homepage:
- Size: 617 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jumble-word-noob
## Noob Implementation of Jumble Word against a small English Dictionary
### How to Use ?
First argument is a **jumbled word** and the rest arguments are already seen words of the given jumbled word.
**Example is shown below:**```bash
$ python3 jumble_word.py lbemju
jumble
Time Elapsed: 5.1797566413879395 seconds$ python3 jumble_word.py rboe
boer
Time Elapsed: 0.041929006576538086 seconds$ python3 jumble_word.py rboe boer
bore
Time Elapsed: 0.04587697982788086 seconds$ python3 jumble_word.py rboe boer bore
ebro
Time Elapsed: 0.16556215286254883 seconds$ python3 jumble_word.py rboe boer bore ebro
robe
Time Elapsed: 0.343045711517334 seconds$ python3 jumble_word.py rboe boer bore ebro robe
sorry..not found
Time Elapsed: 0.5118098258972168 seconds
```