Skip to content

Commit 9f30c7b

Browse files
committed
Update README.md
1 parent 293b2f9 commit 9f30c7b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
11
# Boggle Solver/Game
22

3+
This is a command-line Boggle Solver and Boggle game, written in Python.
4+
5+
To play a game of Boggle, simply run the following command:
6+
7+
```
8+
python boggle.py
9+
```
10+
11+
The utility will display a random 4x4 grid of letters - you have 3 minutes to find as many words in the grid as possible, by moving between adjoining letters vertically, horizontally or diagonally in any direction. Words must be at least 3 letters long, and if the letter 'Q' is shown it should be treated as the 2-letter sequence 'Qu'.
12+
13+
When your time runs out, the utility will show you all the words that it was possible to find in the grid so that you can see how well you did.
14+
15+
To solve a Boggle board (i.e. to find all possible words in the grid), run the following command replacing the argument enclosed in quotes with the letters of the board:
16+
17+
```
18+
python boggle.py "YOUR FOUR ROWS HERE"
19+
```
20+
21+
You must provide exactly 16 letters in groups of 4 as shown above, with each group representing a row of letters from the grid starting with the top row.
22+

0 commit comments

Comments
 (0)