Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 strat

board = Board(9, 9)
game = Minesweeper(board)
game.play(strat.random_play, verbose=True)
```