untrusted-test-only / solutions /05_minesweeper.md
lychees's picture
Upload 569 files
87b3b3a

Mines highlighting

JustBlackBird

    map.setSquareColor(x, y, '#000');

Jhack (giacgbj)

    map.setSquareColor(x, y, '')

Agamemnus

Reposition:

    for (var x = 0; x < 2; x++) {
        for (var y = 0; y < 20; y++) {
            map.placeObject (x, y, 'mine')
        }
    }
    break