WordSearch Solver is a Go application designed to solve word search puzzles efficiently. It fetches a word search puzzle from an API and then searches for words in multiple directions. When a word is found, it highlights it in the grid using ANSI color codes.
- Fetches word search puzzles from an API.
- Searches for words in all eight directions:
- Right
- Left
- Down
- Up
- Upper-right
- Upper-left
- Lower-right
- Lower-left
- Highlights found words using ANSI color codes.
- Displays the grid and found words.
To run the WordSearch Solver, you need to have Go installed on your machine. Follow these steps to install and run the application:
-
Clone the repository:
git clone https://github.com/L-A-Marchetti/Wordsearch-solver.git cd SearchWordSolver
-
Build the application:
go build -o searchwordsolver
-
Run the application:
./searchwordsolver
When you run the application, it will:
- Fetch a word search puzzle from the specified API.
- Search for words in all specified directions.
- Highlight found words and display the updated grid.
This project is licensed under the MIT License.