wingos80 / minesweeper_solved

A semi-full recreation of the game minesweeper made in Python using Pygame, with a solver...
1 stars 0 forks source link

Remove double solving to show hints #13

Closed wingos80 closed 1 month ago

wingos80 commented 1 month ago

Currently to show colours on the board for hints, the solver is ran twice: first run is to solve the sys of eqs to see which move to make, second solve is to produce estimate of bombs after a move is made.

Solving could be done once instead, need to find a way.

wingos80 commented 1 month ago

Closed with commit afb1757