In the popular game of Minesweeper, the object is to find all the mines. If you click on a square it shows a number from 0 to 8 indicating how many of the adjacent squares contain mines. If you click on a mine, you lose.
Can you figure out where the mines are in the below board? Blank squares indicate that it is unknown whether there is a mine in that space. Squares with numbers contain no mines (or you would have already lost).
+---+---+---+---+---+---+---+
| | 2 | 2 | 2 | | 2 | |
+---+---+---+---+---+---+---+
| | | | | | 3 | |
+---+---+---+---+---+---+---+
| 2 | 3 | 3 | 3 | | 3 | 1 |
+---+---+---+---+---+---+---+
| | | | 2 | | | |
+---+---+---+---+---+---+---+
| 2 | 3 | | 3 | 2 | 3 | 2 |
+---+---+---+---+---+---+---+
| | 2 | | | | | |
+---+---+---+---+---+---+---+
| | 2 | | 2 | 1 | 2 | |
+---+---+---+---+---+---+---+
(In reply to
Solution (correct) by tomarken)
Exactly the solution I found, tomarken....it is correct.
+---+---+---+---+---+---+---+
| 0 | 2 | 2 | 2 | X | 2 | X |
+---+---+---+---+---+---+---+
| 0 | X | X | 0 | 0 | 3 | 0 |
+---+---+---+---+---+---+---+
| 2 | 3 | 3 | 3 | X | 3 | 1 |
+---+---+---+---+---+---+---+
| 0 | X | 0 | 2 | X | 0 | X |
+---+---+---+---+---+---+---+
| 2 | 3 | 0 | 3 | 2 | 3 | 2 |
+---+---+---+---+---+---+---+
| X | 2 | X | X | 0 | 0 | X |
+---+---+---+---+---+---+---+
| 0 | 2 | 0 | 2 | 1 | 2 | X |
+---+---+---+---+---+---+---+
Edited on April 11, 2006, 1:58 pm
|
Posted by Dej Mar
on 2006-04-11 13:56:12 |