Sha256: 024c0b96acb2682feed7cd916b1da1d5d808684bc0235ca8af7dda36e425698b

Contents?: true

Size: 1 KB

Versions: 110

Compression:

Stored size: 1 KB

Contents

# Minesweeper

Add the numbers to a minesweeper board.

Minesweeper is a popular game where the user has to find the mines using
numeric hints that indicate how many mines are directly adjacent
(horizontally, vertically, diagonally) to a square.

In this exercise you have to create some code that counts the number of
mines adjacent to a square and transforms boards like this (where `*`
indicates a mine):

    +-----+
    | * * |
    |  *  |
    |  *  |
    |     |
    +-----+

into this:

    +-----+
    |1*3*1|
    |13*31|
    | 2*2 |
    | 111 |
    +-----+

## Running the tests

To run the tests, run the command `busted .` from within the exercise directory.

## Further information

For more detailed information about the Lua track, including how to get help if
you're having trouble, please visit the exercism.io [Lua language page](http://exercism.io/languages/lua/about).


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

110 entries across 110 versions & 1 rubygems

Version Path
trackler-2.2.1.4 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.1.3 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.1.2 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.1.1 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.1.0 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.0.6 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.0.5 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.0.4 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.0.3 tracks/lua/exercises/minesweeper/README.md
trackler-2.2.0.2 tracks/lua/exercises/minesweeper/README.md