Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -830,13 +830,22 @@
"prerequisites": [],
"difficulty": 5
},
{
"slug": "flower-field",
"name": "Flower Field",
"uuid": "02887f9c-e666-439b-a726-03c35dfb5f2c",
"practices": [],
"prerequisites": [],
"difficulty": 8
},
{
"slug": "minesweeper",
"name": "Minesweeper",
"uuid": "fe341c5e-0292-455f-93be-1ffb8f0b4b3b",
"practices": [],
"prerequisites": [],
"difficulty": 8
"difficulty": 8,
"status": "deprecated"
},
{
"slug": "simple-linked-list",
Expand Down
26 changes: 26 additions & 0 deletions exercises/practice/flower-field/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Instructions

Your task is to add flower counts to empty squares in a completed Flower Field garden.
The garden itself is a rectangle board composed of squares that are either empty (`' '`) or a flower (`'*'`).

For each empty square, count the number of flowers adjacent to it (horizontally, vertically, diagonally).
If the empty square has no adjacent flowers, leave it empty.
Otherwise replace it with the count of adjacent flowers.

For example, you may receive a 5 x 4 board like this (empty spaces are represented here with the '·' character for display on screen):

```text
·*·*·
··*··
··*··
·····
```

Which your code should transform into this:

```text
1*3*1
13*31
·2*2·
·111·
```
7 changes: 7 additions & 0 deletions exercises/practice/flower-field/.docs/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Introduction

[Flower Field][history] is a compassionate reimagining of the popular game Minesweeper.
The object of the game is to find all the flowers in the garden using numeric hints that indicate how many flowers are directly adjacent (horizontally, vertically, diagonally) to a square.
"Flower Field" shipped in regional versions of Microsoft Windows in Italy, Germany, South Korea, Japan and Taiwan.

[history]: https://web.archive.org/web/20020409051321fw_/http://rcm.usr.dsi.unimi.it/rcmweb/fnm/
17 changes: 17 additions & 0 deletions exercises/practice/flower-field/.meta/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"authors": [
"BNAndras"
],
"files": {
"solution": [
"flower-field.coffee"
],
"test": [
"flower-field.spec.coffee"
],
"example": [
".meta/example.coffee"
]
},
"blurb": "Mark all the flowers in a garden."
}
25 changes: 25 additions & 0 deletions exercises/practice/flower-field/.meta/example.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class FlowerField
@annotate: (garden) ->
if garden.length < 1
return garden
if garden[0].length < 1
return garden

board = garden.map (row) -> row.split ''

board.map (row, x) ->
r = row.map (cell, y) ->
if cell == '*'
return cell
count = 0
for i in [-1..1]
for j in [-1..1]
if i + x >= 0 && i + x < board.length && j + y >= 0 && j + y < row.length
count += 1 if board[i + x][j + y] == '*'
if count == 0
' '
else
count.toString()
r.join ''

module.exports = FlowerField
46 changes: 46 additions & 0 deletions exercises/practice/flower-field/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[237ff487-467a-47e1-9b01-8a891844f86c]
description = "no rows"

[4b4134ec-e20f-439c-a295-664c38950ba1]
description = "no columns"

[d774d054-bbad-4867-88ae-069cbd1c4f92]
description = "no flowers"

[225176a0-725e-43cd-aa13-9dced501f16e]
description = "garden full of flowers"

[3f345495-f1a5-4132-8411-74bd7ca08c49]
description = "flower surrounded by spaces"

[6cb04070-4199-4ef7-a6fa-92f68c660fca]
description = "space surrounded by flowers"

[272d2306-9f62-44fe-8ab5-6b0f43a26338]
description = "horizontal line"

[c6f0a4b2-58d0-4bf6-ad8d-ccf4144f1f8e]
description = "horizontal line, flowers at edges"

[a54e84b7-3b25-44a8-b8cf-1753c8bb4cf5]
description = "vertical line"

[b40f42f5-dec5-4abc-b167-3f08195189c1]
description = "vertical line, flowers at edges"

[58674965-7b42-4818-b930-0215062d543c]
description = "cross"

[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
description = "large garden"
4 changes: 4 additions & 0 deletions exercises/practice/flower-field/flower-field.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class FlowerField
@annotate: (garden) ->

module.exports = FlowerField
132 changes: 132 additions & 0 deletions exercises/practice/flower-field/flower-field.spec.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
FlowerField = require './flower-field'

describe 'Flower Field', ->
it 'no rows', ->
garden = []
expect(FlowerField.annotate garden).toEqual []

xit 'no columns', ->
garden = ['']
expect(FlowerField.annotate garden).toEqual ['']

xit 'no flowers', ->
garden = [
' '
' '
' '
]
expect(FlowerField.annotate garden).toEqual [
' '
' '
' '
]

xit 'garden full of flowers', ->
garden = [
'***'
'***'
'***'
]
expect(FlowerField.annotate garden).toEqual [
'***'
'***'
'***'
]

xit 'flower surrounded by spaces', ->
garden = [
' '
' * '
' '
]
expect(FlowerField.annotate garden).toEqual [
'111'
'1*1'
'111'
]

xit 'space surrounded by flowers', ->
garden = [
'***'
'* *'
'***'
]
expect(FlowerField.annotate garden).toEqual [
'***'
'*8*'
'***'
]

xit 'horizontal line', ->
garden = [' * * ']
expect(FlowerField.annotate garden).toEqual ['1*2*1']

xit 'horizontal line, flowers at edges', ->
garden = ['* *']
expect(FlowerField.annotate garden).toEqual ['*1 1*']

xit 'vertical line', ->
garden = [
' '
'*'
' '
'*'
' '
]
expect(FlowerField.annotate garden).toEqual [
'1'
'*'
'2'
'*'
'1'
]

xit 'vertical line, flowers at edges', ->
garden = [
'*'
' '
' '
' '
'*'
]
expect(FlowerField.annotate garden).toEqual [
'*'
'1'
' '
'1'
'*'
]

xit 'cross', ->
garden = [
' * '
' * '
'*****'
' * '
' * '
]
expect(FlowerField.annotate garden).toEqual [
' 2*2 '
'25*52'
'*****'
'25*52'
' 2*2 '
]

xit 'large garden', ->
garden = [
' * * '
' * '
' * '
' * *'
' * * '
' '
]
expect(FlowerField.annotate garden).toEqual [
'1*22*1'
'12*322'
' 123*2'
'112*4*'
'1*22*2'
'111111'
]