Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ojroques/go-boggle
A Boggle solver
https://github.com/ojroques/go-boggle
boggle
Last synced: about 1 month ago
JSON representation
A Boggle solver
- Host: GitHub
- URL: https://github.com/ojroques/go-boggle
- Owner: ojroques
- License: bsd-2-clause
- Created: 2023-03-19T21:01:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-27T09:45:20.000Z (12 months ago)
- Last Synced: 2024-10-12T22:34:17.063Z (2 months ago)
- Topics: boggle
- Language: Go
- Homepage:
- Size: 930 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-boggle
A [Boggle](https://boardgamegeek.com/boardgame/1293/boggle) solver in Go.
## Usage
To solve the Boggle grid [boggle-example.txt](./assets/boggle-example.txt) using
the word list [scrabble.fr.txt](./assets/scrabble.fr.txt):
```bash
make build
./cmd/boggle/boggle -w ./assets/scrabble.fr.txt -b ./assets/boggle-example.txt
```Check help:
```bash
./cmd/boggle/boggle -h
```To remove the executable:
```bash
make clean
```