Sha256: 4e50a6d127caa21eab3203358837424a65b89f8a012bb2666edfe3a84effdad4

Contents?: true

Size: 659 Bytes

Versions: 106

Compression:

Stored size: 659 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"`

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


Refer to the [Exercism CoffeScript page](http://exercism.io/languages/coffeescript) for getting started with CoffeeScript.

In order to run the test, you can run the test file from the exercise directory:
```bash
jasmine-node --coffee .
```

## 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

106 entries across 106 versions & 1 rubygems

Version Path
trackler-2.2.1.10 tracks/coffeescript/exercises/word-count/README.md
trackler-2.2.1.9 tracks/coffeescript/exercises/word-count/README.md
trackler-2.2.1.8 tracks/coffeescript/exercises/word-count/README.md
trackler-2.2.1.7 tracks/coffeescript/exercises/word-count/README.md
trackler-2.2.1.6 tracks/coffeescript/exercises/word-count/README.md
trackler-2.2.1.5 tracks/coffeescript/exercises/word-count/README.md