https://github.com/rumpl/kata-minesweeper
https://github.com/rumpl/kata-minesweeper
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rumpl/kata-minesweeper
- Owner: rumpl
- Created: 2016-03-08T17:05:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-11T12:53:23.000Z (over 10 years ago)
- Last Synced: 2025-03-18T20:48:15.111Z (over 1 year ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kata-minesweeper
The goal here is to implement a typescript implementation of the [Minesweeper game](https://birrell.org/andrew/minesweeper/)
## Goal
You should write a program that, given an arbitrary field with mines, outputs the field where each empty space contains the number of mines it is adjacent to.
For example, for a given field:
```
*...
....
.*..
....
```
The program should output:
```
*100
2210
1*10
1110
```
## Prerequisites
You need typescript and tsd installed:
npm install typescript -g
npm install tsd -g
## Running the example
npm i
gulp
Gulp will start watching changes to your code and execute the unit tests automatically.
Enjoy.