Sha256: a354bcd1e8e9431d7b2521bfc0665530fdbd0e339be5133a5efc1ade5307703a

Contents?: true

Size: 826 Bytes

Versions: 109

Compression:

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


The Scala exercises assume an SBT project scheme. The exercise solution source
should be placed within the exercise directory/src/main/scala. The exercise
unit tests can be found within the exercise directory/src/test/scala.

To run the tests simply run the command `sbt test` in the exercise directory.

For more detailed info about the Scala track see the [help
page](http://exercism.io/languages/scala).


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

109 entries across 109 versions & 1 rubygems

Version Path
trackler-2.2.1.4 tracks/scala/exercises/word-count/README.md
trackler-2.2.1.3 tracks/scala/exercises/word-count/README.md
trackler-2.2.1.2 tracks/scala/exercises/word-count/README.md
trackler-2.2.1.1 tracks/scala/exercises/word-count/README.md
trackler-2.2.1.0 tracks/scala/exercises/word-count/README.md
trackler-2.2.0.6 tracks/scala/exercises/word-count/README.md
trackler-2.2.0.5 tracks/scala/exercises/word-count/README.md
trackler-2.2.0.4 tracks/scala/exercises/word-count/README.md
trackler-2.2.0.3 tracks/scala/exercises/word-count/README.md