little help on the newbies at minesweeper

This commit is contained in:
TheRedBlueCube3 2025-06-22 00:33:32 +03:00
parent 41fb7478d0
commit 91c3a9daf2

View File

@ -6,6 +6,7 @@ Minesweeper is a classic puzzle game where the objective is to clear a rectangul
The board consists of hidden cells, some containing mines. Uncover a cell by selecting its coordinates. If it's a mine, you lose. If it's safe, a number appears indicating how many mines are adjacent to that cell. The board consists of hidden cells, some containing mines. Uncover a cell by selecting its coordinates. If it's a mine, you lose. If it's safe, a number appears indicating how many mines are adjacent to that cell.
**Use logic to deduce mine locations and mark them with flags.** **Use logic to deduce mine locations and mark them with flags.**
Marking all mines with flags isn't necessary, but helps.
### Clear all non-mine cells to win! ### Clear all non-mine cells to win!