Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elle-concetta/wordle-solver
A multi-threaded word search puzzle solver.
https://github.com/elle-concetta/wordle-solver
hashset hashtable multithreading
Last synced: about 5 hours ago
JSON representation
A multi-threaded word search puzzle solver.
- Host: GitHub
- URL: https://github.com/elle-concetta/wordle-solver
- Owner: elle-concetta
- Created: 2024-04-27T00:21:02.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T23:45:01.000Z (7 months ago)
- Last Synced: 2024-05-04T00:32:05.172Z (7 months ago)
- Topics: hashset, hashtable, multithreading
- Language: C
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Wordle Solver
A multi-threaded word search puzzle solver that uses low-level I/O to read the file containing the puzzle table.## Terminal Commands
```
./solve -dict dict.txt -input puzzle100by100.txt -len 6:14 -size 100 -nbuffer 4
``````
./solve -dict dict.txt -input puzzle1001by1001.txt -len 7:9 -size 1001 -nbuffer 1
``````
./solve -dict dict.txt -input puzzle1001by1001.txt -len 7:9 -size 1001 -nbuffer 4 -s
``````
./solve -dict dict.txt -input puzzle100mb.txt -len 8:8 -size 10000 -nbuffer 16 -s
``````
./solve -dict dict.txt -input puzzle100mb.txt -len 8:9 -size 10000 -nbuffer 64
```