Sha256: 9ff996a502869e34592b17b114f71833a65b8a96d67cadb90a1ac6f322ade561

Contents?: true

Size: 783 Bytes

Versions: 68

Compression:

Stored size: 783 Bytes

Contents

# Word Count

Given a phrase, count the occurrences of each word in that phrase.

For example for the input `"olly olly in come free"`

```text
olly: 2
in: 1
come: 1
free: 1
```

* * * *

For installation and learning resources, refer to the [exercism help page][].

[exercism help page]: http://exercism.io/languages/lfe

To run the provided tests, you will need `make`.
Open a terminal window and run the following from the exercise directory:

```sh
make test
```

You should now be able to see the results of the test suite for the exercise.

## Source

This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour.

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

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.118 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.117 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.116 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.115 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.114 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.113 tracks/lfe/exercises/word-count/README.md
trackler-2.2.1.111 tracks/lfe/exercises/word-count/README.md