Sha256: 68f1f37c4a50a581a11622120084915aa80d41265a12915d403d17920e45319f

Contents?: true

Size: 1.96 KB

Versions: 106

Compression:

Stored size: 1.96 KB

Contents

# Kindergarten Garden

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

The kindergarten class is learning about growing plants. The teachers
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, they've put little styrofoam cups along the window sills,
and planted one type of plant in each cup, choosing randomly from the
available types of seeds.

```plain
[window][window][window]
........................ # each dot represents a styrofoam 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. The children are assigned to
cups in alphabetical order.

The following diagram represents Alice's plants:

```plain
[window][window][window]
VR......................
RG......................
```

So in the row nearest the window, she has a violet and a radish; in the
row behind that, 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 which students.

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

```plain
[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

## Setup

Go through the project setup instructions for Xcode using Swift:

http://exercism.io/languages/swift


## Source

Random musings during airplane trip. [http://jumpstartlab.com](http://jumpstartlab.com)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

106 entries across 106 versions & 1 rubygems

Version Path
trackler-2.2.1.103 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.102 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.101 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.100 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.99 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.98 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.97 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.96 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.95 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.94 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.93 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.92 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.91 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.90 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.89 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.88 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.87 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.86 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.85 tracks/swift/exercises/kindergarten-garden/README.md
trackler-2.2.1.84 tracks/swift/exercises/kindergarten-garden/README.md