untrusted-test-only / solutions /05_minesweeper.md
lychees's picture
Upload 569 files
87b3b3a
# Mines highlighting
## JustBlackBird
```javascript
map.setSquareColor(x, y, '#000');
```
## Jhack (giacgbj)
```javascript
map.setSquareColor(x, y, '')
```
## Agamemnus
Reposition:
```javascript
for (var x = 0; x < 2; x++) {
for (var y = 0; y < 20; y++) {
map.placeObject (x, y, 'mine')
}
}
break
```