Minesweeper

Description


In the popular Minesweeper game you have a board with some mines and those cells that don’t contain a mine have a number in it that indicates the total number of mines in the neighboring cells. Starting off with some arrangement of mines we want to create a Minesweeper game setup.

Example

For matrix = [[true, false, false], [false, true, false], [false, false, false]] the output should be minesweeper(matrix) = [[1, 2, 1], [2, 1, 1], [1, 1, 1]] Check out the image below for better understanding:

Input/Output

  • [execution time limit] 4 seconds (js)

  • [input] array.array.boolean matrix

A non-empty rectangular matrix consisting of boolean values - true if the corresponding cell contains a mine, false otherwise.

Guaranteed constraints: 2 ≤ matrix.length ≤ 5, 2 ≤ matrix[0].length ≤ 5.

  • [output] array.array.integer

Rectangular matrix of the same size as matrix each cell of which contains an integer equal to the number of mines in the neighboring cells. Two cells are called neighboring if they share at least one corner.

[JavaScript (ES6)] Syntax Tips

1
2
3
4
5
6
// Prints help message to the console
// Returns a string
function helloWorld(name) {
    console.log("This prints to the console when you Run Tests");
    return "Hello, " + name;
}

Solution


1
2
3
4
5
6
7
8
function minesweeper(matrix) {
    return matrix.map((l,i) => 
            l.map((e,j) => 
                 matrix.slice(Math.max(0, i-1), i+2).map(f=>
                    f.slice(Math.max(0, j-1), j+2).reduce((a,b)=>a+b)).reduce((a,b)=>a+b) - e
            )
     )
}