Minesweeper AI solver

Опубликовано: 17 Июль 2026
на канале: dominikc4r
771
17

I created minesweeper algortihm that can solve hard mode in google's easter egg implementation (google "minesweeper" to play).

AI flow:
1. capture the image of the chrome window (when its stable - no animations running)
2. parse data and store it into the internal matrix representation
3. solve using deduction logic
4. send outputs (clicks) to the chrome window
5. repeat (goto 1.)

Code available at https://github.com/DKorosec/minesweep...