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

https://github.com/ruivalim/minesweeper

Minesweeper implementation in JavaScript.
https://github.com/ruivalim/minesweeper

Last synced: about 1 month ago
JSON representation

Minesweeper implementation in JavaScript.

Awesome Lists containing this project

README

          

# Minesweeper

## Sumary

This project has the only purpose of practicing JavaScript, and IA Skills.

Everyone knows what minesweeper is, my objective here is first develop a functional implementation of the game with JavaScript, latter on start development of IA to solve it. Starting with classic IA based on algorithm, then creating a machine learning to solve it.

[See example](https://ruivalim.github.io/minesweeper/example/)

## To Do List

### Game

- [X] Generate GRID
- [X] Fill tiles with bombs
- [X] Fill tiles with hints
- [X] Stylize tiles
- [X] Clicked tiles to open
- [X] Open white spaces
- [X] Mark tile with flag
- [X] Winning/Defeating behaviour

### Classic IA with Algorithm

### IA with Machine Learning