Skip to content

ojroques/go-boggle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-boggle

A Boggle solver in Go.

Usage

To solve the Boggle grid boggle-example.txt using the word list scrabble.fr.txt:

make build
./cmd/boggle/boggle -w ./assets/scrabble.fr.txt -b ./assets/boggle-example.txt

Check help:

./cmd/boggle/boggle -h

To remove the executable:

make clean