Sha256: bb3f0f8598eef91661a1c4dba38ef1a51dc9b0b41d42a0282005fb1cea8b472a

Contents?: true

Size: 1.59 KB

Versions: 119

Compression:

Stored size: 1.59 KB

Contents

Given a diagram, determine which plants each child in the kindergarten class is
responsible for.

The kindergarten class is learning about growing plants. The teacher
thought it would be a good idea to give them actual seeds, plant them in
actual dirt, and grow actual plants.

They've chosen to grow grass, clover, radishes, and violets.

To this end, the children have put little cups along the window sills, and
planted one type of plant in each cup, choosing randomly from the available
types of seeds.

```text
[window][window][window]
........................ # each dot represents a cup
........................
```

There are 12 children in the class:

- Alice, Bob, Charlie, David,
- Eve, Fred, Ginny, Harriet,
- Ileana, Joseph, Kincaid, and Larry.

Each child gets 4 cups, two on each row. Their teacher assigns cups to
the children alphabetically by their names.

The following diagram represents Alice's plants:

```text
[window][window][window]
VR......................
RG......................
```

In the first row, nearest the windows, she has a violet and a radish.  In the
second row she has a radish and some grass.

Your program will be given the plants from left-to-right starting with
the row nearest the windows. From this, it should be able to determine
which plants belong to each student.

For example, if it's told that the garden looks like so:

```text
[window][window][window]
VRCGVVRVCGGCCGVRGCVCGCGV
VRCCCGCRRGVCGCRVVCVGCGCV
```

Then if asked for Alice's plants, it should provide:

- Violets, radishes, violets, radishes

While asking for Bob's plants would yield:

- Clover, grass, clover, clover

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
trackler-2.2.1.180 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.179 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.178 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.177 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.176 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.175 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.174 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.173 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.172 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.171 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.170 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.169 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.167 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.166 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.165 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.164 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.163 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.162 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.161 problem-specifications/exercises/kindergarten-garden/description.md
trackler-2.2.1.160 problem-specifications/exercises/kindergarten-garden/description.md