3241611

What if minesweeper kept getting harder?

Hey look, I made a game! Can I call myself a game developer now?

I've burnt thousands of hours playing Minesweeper over the years, and my preferred method of keeping things interesting was to add a mine everytime I completed the grid. I often wondered if someone would automate this process, and (as is the way of all software nerds) I inevitably decided to do it myself.

Play my incrementally harder version here

Screenshot of my version of Minesweeper, showing a lost game of minesweeper: a 10-by-ten board with 10 mines marked in red in random positions. The player has cleared a portion of the top-right of the board before hitting a mine. They are currently on level 10, and now have the option to restart at level 9. Their high score is shows as being 20.

This soon turned into quite the project, so I'm explaining myself here. But before I get to that, it's worth explaining how Minesweeper works (for those of you who didn't sink thousands of hours into Windows 3.11/95/98).

How to play Minesweeper

Playing Minesweeper involves clicking cells on a grid to reveal their contents. If you click a cell that contains a mine, you lose. If you clear all the cells that don't contain a mine, you win.

The basic controls:

  • Left-click (or a tap on a touch-enabled device) reveals a cell.
  • Right-click (or a long-press) flags1 or unflags a cell.

If the cell you click is adjacent to any mines, it will show you the number of mines that it is adjacent to. For example, if a cell has a 1 on it, there is 1 mine next to that cell. This could be above, below, left, right, or diagonal to the numbered cell.

This means you can use logic to deduce where the mines are. For example, if a 8 is surrounded by eight unrevealed cells you can deduce that every surrounding cell contains a mine.

If you click a cell that is blank (i.e. contains no number), all the surrounding cells will be revealed. If any of those cells are also blank, all the surrounding cells of those cells will be revealed, and so on. This is called a "cascade" and is a key part of keeping the gameplay speedy.

Take this example 4x4 grid version of the game...

3 images of a 4x4 minesweeper board. Board 1 is completely uncleared except for cell B3, which shows a number 1. The second board is a continuation of the game, and shows more cleared cells - with only four left uncleared. Board 3 shows the game in a loss state, with two mines exposed and marked in red.

  1. For the first move, the player clicks to reveal cell B3. It contains a 1, so the player knows that there is one mine adjacent to that cell, but it isn't a particularly useful opening move. There's no clue which of the adjacent cells contains the mine.
  2. The player then clicks to reveal cell A3. This cell is blank, so the "cascade" kicks in and reveals all the connected black cells and the numbered cells that are adjoining. This tells a smart player that cells C3 and D3 must contain mines.
  3. Our player, however, is not smart and clicks on C3. This is a mine, and they lose the game.

How does my version differ from "classic" Minesweeper?

1. Difficulty (the main point of making my version)

In my version, the difficulty increases as you play. This is achieved by adding a mine to the grid every time you complete it. This means that the grid gets more difficult to complete as you play, and the number of mines becomes your score.

2. Size

For my version, I've constrained things to a 10 x 10 grid. The primary reason for this is that I wanted to make the game playable on mobile devices, and ten-by-ten is about the largest I could fit on a phone screen and still be able to play comfortably with my fat and clumsy fingers.

4. You always start with a clear cell

No matter which cell you click first, it will always be a clear cell. This is to avoid the frustration of losing on the first click, which is a common occurrence in the original game.

5. Flagging

At first I left the concept of "flagging" or "marking" cells out of my version, taking the view that "flagging is for chumps". But early playtesters were adamant I add it, so I caved to the pressure.

How well will you do?

I've been tinkering with this version for about a year now, and my all-time high score is 36. Can you beat that? If so, take a screenshot and show me on Mastodon (@tomhazledine@mastodon.social).


  1. Note: "flagging" (or "marking" or "chording" in some versions of the game) is for chumps who aren't confident enough to yolo their way to victory.

Related posts

If you enjoyed this article, RoboTom 2000™️ (an LLM-powered bot) thinks you might be interested in these related posts:

Improving my Wordle opening words using simple node scripts

Crafting command-line scripts to calculate the most frequently used letters in Wordle (and finding an optimal sequence of starting words).

Similarity score: 54% match (okay, so not very similar). RoboTom says:

Bullet Journal Revisited

The Bullet Journal is a system for Getting Things Done. One nested pen-and-paper list that gets rewritten every morning.

Similarity score: 53% match (okay, so not very similar). RoboTom says:



Signup to my newsletter

Join the dozens (dozens!) of people who get my writing delivered directly to their inbox. You'll also hear news about my miscellaneous other projects, some of which never get mentioned on this site.