https://github.com/cobyj33/boogle
A C++ game of Boogle, Word Hunt, Scrabble, etc... of any size in terminal
https://github.com/cobyj33/boogle
Last synced: 10 months ago
JSON representation
A C++ game of Boogle, Word Hunt, Scrabble, etc... of any size in terminal
- Host: GitHub
- URL: https://github.com/cobyj33/boogle
- Owner: cobyj33
- Created: 2022-03-21T03:08:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T21:06:24.000Z (over 3 years ago)
- Last Synced: 2025-07-26T22:18:08.659Z (11 months ago)
- Language: C++
- Size: 497 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boogle
[](https://replit.com/@cobyj33/Boogle)
A game of Boogle, where a board of n x n size is filled with characters, and the player must try to guess words by connecting adjacent characters in the board
An adjacent character is considered to be any character on top, on bottom, to the side, or directly diagonal to another character
For Example, in this generated 5 x 5 size board by Boogle:
```
E X K U J
A W R L B
T D S P I
N O F Y H
G Q C V Z
```
Some possible words are SONG, SWEAT, DOG, SWAT, COD, and EAT
| | | | | | |
| SONG | SWEAT | DOG | SWAT | COD | EAT |
| ----------- | ----------- | ----------- | ----------- | ----------- | ----------- |
| E X K U J | **E** X K U J | E X K U J | E X K U J | E X K U J | **E** X K U J |
| A W R L B | **A** **W** R L B | A W R L B | **A** **W** R L B | A W R L B | **A** W R L B |
| T D **S** P I | **T** D **S** P I | T **D** S P I | **T** D **S** P I | T **D** S P I | **T** D S P I |
| **N** **O** F Y H | N O F Y H | N **O** F Y H | N O F Y H | N **O** F Y H | N O F Y H |
| **G** Q C V Z | G Q C V Z | **G** Q C V Z | G Q C V Z | G Q **C** V Z | G Q C V Z |
This project includes a solver for a board, a full dictionary of words, and is fully playable in the terminal
To compile the project, simply use the terminal command ```g++ main.cpp -I ./ -o main``` from the root directory of the downloaded project with g++ installed
Alteratively, the project can be run in the browser on [replit](https://replit.com/@cobyj33/Boogle)
This was the first real C++ project I ever made as a project for my Computer Science class, so I let it live here to look back upon :)