Can you solve this little minesweeper puzzle?

4 by 4 minesweeper grid containing, from left to right, top to bottom: 2, gray, 1, gray, gray, gray, 3, gray, 3, gray, gray, gray, gray, 1, gray, 1

Problem statement

The xkcd website published its cartoon #2496, containing a minesweeper grid, and that is the problem for this post: to locate all of the mines in the minesweeper grid above.

For those of you who don't know the minesweeper game, here are the rules:

  • some squares contain mines, others don't;
  • squares that do not contain mines contain numbers instead, and those numbers indicate how many mines are neighbours to that numbered square (the neighbourhood of a square contains the squares that are directly adjacent to it, plus the squares that share a vertex in the diagonal).
  • gray squares can contain mines or other numbers.

You must find all the mines by reasoning about the numbers you see.

You can play minesweeper online or you can play my minesweeper remake.

Give it some thought!

If you need any clarification whatsoever, feel free to ask in the comment section below.

Solvers

Congratulations to the ones that solved this problem correctly and, in particular, to the ones who sent me their correct solutions:

  • David H., Taiwan;
  • Gerard M., Ireland;
  • Peter K., USA;
  • Rodrigo H. M., Mexico;
  • Rita F., Portugal;

Join the list of solvers by emailing me your solution!

Solution

Let's look for the mines together!

This is the mine field we have to work with:

Let's look at the lower-left corner, at the 3 and the 1.

The 3 has four neighbouring cells:

The two cells that have a double circle are next to the 1, and therefore we can't have mines in both of those cells. Therefore, the two top circles must contain mines.

Two mines have been found!

The 3 that we were looking at now has two mines placed next to it, so we only have to find the last one.

Regardless of where that mine is (one of the two double circles below), it is always going to be next to the bottom-left 1. This means that there can be no mines between the two 1s on the bottom row.

By crossing out those two locations, we know that the bottom-right 1 has a mine right above it.

For the next step, we can look at the top-right 1. The top-right 1 already has a neighbouring mine (to the left, and down) which means all other neighbouring cells must be empty.

In crossing out those positions, we realise that the 3 on the second row, to the right, only has one position left for its third mine. Therefore, we can place a mine there.

As we place that mine, the puzzle is complete! Take a look for yourself:

Don't forget to subscribe to the newsletter to get bi-weekly problems sent straight to your inbox.

Become a better Python 🐍 developer πŸš€

+35 chapters. +400 pages. Hundreds of examples. Over 30,000 readers!

My book β€œPydon'ts” teaches you how to write elegant, expressive, and Pythonic code, to help you become a better developer. >>> Download it here πŸπŸš€.

Previous Post Next Post

Blog Comments powered by Disqus.