Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pnv2003/minesweeper-ai
A simple bot that can solve Minesweeper puzzles
https://github.com/pnv2003/minesweeper-ai
Last synced: 16 days ago
JSON representation
A simple bot that can solve Minesweeper puzzles
- Host: GitHub
- URL: https://github.com/pnv2003/minesweeper-ai
- Owner: pnv2003
- Created: 2024-04-01T03:13:24.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-01T16:36:15.000Z (10 months ago)
- Last Synced: 2024-11-10T20:12:52.810Z (2 months ago)
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# minesweeper-ai
A simple bot that can solve Minesweeper puzzles (faster)## Usage
```py
# main.py
from src.board import Board
from src.minesweeper import Minesweeper
import src.strategy as stratboard = Board(9, 9)
game = Minesweeper(board)
game.play(strat.random_play, verbose=True)
```