Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

In sudoku the whole point of the puzzle is that there is are a few set numbers that you need to deduce the whole board from. If there are zero indicated mines at the start, its all just a guessing game, or at the very least very tedious to play because you basicly have to either find all of the mines at one go or if you made a mistake start all over. Even in most minesweeper clones the board is only generated on your first click of a tile which is given to you for free so the game can even start. I like the idea but I think you have missed a very key feature here game logic wise.

(1 edit)

Hello, first of all thank you for your liking.

All the maps in this game are pre-generated by Python using a pruning algorithm, which ensures that every map has one and only one solution for its region arrangement. Therefore, the distribution of mines can be figured out through logic based on the arrangement rules.

For example, if a region of a certain color only exists in one column, then all cells of other colors in that column can be ruled out.

After lots of testing with my friends, only some of the 6×6 maps might require hypothetical reasoning. We never needed to guess on other maps.

If you’d like, feel free to share the map you found confusing and I can walk you through my thought process.;)