Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/l-a-marchetti/wordsearch-solver
✒️ Simple Wordsearch solver
https://github.com/l-a-marchetti/wordsearch-solver
Last synced: 28 days ago
JSON representation
✒️ Simple Wordsearch solver
- Host: GitHub
- URL: https://github.com/l-a-marchetti/wordsearch-solver
- Owner: L-A-Marchetti
- License: mit
- Created: 2024-07-02T18:37:50.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-03T20:28:22.000Z (6 months ago)
- Last Synced: 2024-10-25T08:36:26.931Z (3 months ago)
- Language: Go
- Size: 112 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WordSearch Solver
![WordSearch Solver Logo](example.png)
## Overview
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.
## Features
- 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.## Installation
To run the WordSearch Solver, you need to have Go installed on your machine. Follow these steps to install and run the application:
1. Clone the repository:
```sh
git clone https://github.com/L-A-Marchetti/Wordsearch-solver.git
cd SearchWordSolver
```2. Build the application:
```sh
go build -o searchwordsolver
```3. Run the application:
```sh
./searchwordsolver
```## Usage
When you run the application, it will:
1. Fetch a word search puzzle from the specified API.
2. Search for words in all specified directions.
3. Highlight found words and display the updated grid.## License
This project is licensed under the MIT License.
---