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.
- Host: GitHub
- URL: https://github.com/ruivalim/minesweeper
- Owner: Ruivalim
- Created: 2020-05-11T04:34:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:32:47.000Z (over 3 years ago)
- Last Synced: 2025-02-28T19:20:40.362Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://ruivalim.github.io/minesweeper
- Size: 575 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
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