https://github.com/vatamanubogdan/minesweeper
Minesweeper CLI version that was developed in high school to show the applicability of the Lee Algorithm
https://github.com/vatamanubogdan/minesweeper
learning lee-algorithm minesweeper
Last synced: 6 months ago
JSON representation
Minesweeper CLI version that was developed in high school to show the applicability of the Lee Algorithm
- Host: GitHub
- URL: https://github.com/vatamanubogdan/minesweeper
- Owner: VatamanuBogdan
- License: mit
- Created: 2020-03-06T20:33:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-13T16:42:38.000Z (over 1 year ago)
- Last Synced: 2024-11-13T17:36:29.457Z (over 1 year ago)
- Topics: learning, lee-algorithm, minesweeper
- Language: C++
- Homepage:
- Size: 25.4 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MineSweeper
## Overview
This project is a CLI copy of the [Microsoft Minesweeper](https://en.wikipedia.org/wiki/Microsoft_Minesweeper) game. It was created as a high school project that demonstrates the application of the [Lee Algorithm](https://en.wikipedia.org/wiki/Lee_algorithm).

## Prerequisites
For building the project you need the following prerequisites:
- **gcc**/**clang** compiler that supports **C++ 11**
- **cmake** with the version greater than **3.15**
- **make** unix utility
## Building & Running
To **build**, **run** and **clean** the project use the scripts located inside the [scripts](scripts) directory.
**Build:**
```bash
scripts/build.sh
```
**Run:**
```bash
scripts/run.sh
```
**Clean:**
```bash
scripts/cleanup.sh
```