Sha256: 3e05707d72eaebb5d37501fd790c9dae9b0c672ab0c606911c024984b4d2742b
Contents?: true
Size: 980 Bytes
Versions: 107
Compression:
Stored size: 980 Bytes
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 | +-----+ ## Making the Test Suite Pass 1. Get [PHPUnit]. % wget --no-check-certificate https://phar.phpunit.de/phpunit.phar % chmod +x phpunit.phar 2. Execute the tests for an assignment. % phpunit.phar wordy/wordy_test.php [PHPUnit]: http://phpunit.de ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
107 entries across 107 versions & 1 rubygems