mirror of
https://codeberg.org/cblanken/boggler.git
synced 2026-07-25 19:19:20 -04:00
Update README.md
This commit is contained in:
@@ -2,8 +2,12 @@
|
|||||||
A solver for the popular word game Boggle.
|
A solver for the popular word game Boggle.
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
```bash
|
```console
|
||||||
$ git clone https://github.com/cblanken/boggler.git
|
pip install boggler
|
||||||
|
```
|
||||||
|
OR
|
||||||
|
```console
|
||||||
|
git clone https://github.com/cblanken/boggler.git
|
||||||
```
|
```
|
||||||
|
|
||||||
To use the script to solve a particular Boggle board configuration, you'll need to do a few things
|
To use the script to solve a particular Boggle board configuration, you'll need to do a few things
|
||||||
@@ -11,11 +15,11 @@ To use the script to solve a particular Boggle board configuration, you'll need
|
|||||||
|
|
||||||
Here is an example `board.csv`. Note the orientation of the board does not matter.
|
Here is an example `board.csv`. Note the orientation of the board does not matter.
|
||||||
```console
|
```console
|
||||||
$ cat boards/b1.csv
|
$ cat board.csv
|
||||||
s,a,i,p
|
y,e,o,s
|
||||||
l,qu,a,y
|
r,e,o,v
|
||||||
u,l,l,s
|
d,f,e,y
|
||||||
o,w,h,a
|
n,m,e,qu
|
||||||
```
|
```
|
||||||
2. Find a dictionary wordlist file or create your own
|
2. Find a dictionary wordlist file or create your own
|
||||||
|
|
||||||
@@ -393,4 +397,4 @@ que : [(3, 3), (3, 2)]
|
|||||||
quey : [(3, 3), (3, 2), (2, 3)]
|
quey : [(3, 3), (3, 2), (2, 3)]
|
||||||
quem : [(3, 3), (3, 2), (3, 1)]
|
quem : [(3, 3), (3, 2), (3, 1)]
|
||||||
queme : [(3, 3), (3, 2), (3, 1), (2, 2)]
|
queme : [(3, 3), (3, 2), (3, 1), (2, 2)]
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user