Sha256: fe7679799112ed8ff97889e4c67f7e331b5230b33ec282851fd3f858da13f0fd

Contents?: true

Size: 776 Bytes

Versions: 167

Compression:

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


For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/groovy).

Run the tests by executing the test script.

```
$ groovy ./WordCountSpec.groovy
```

After the first test(s) pass, continue by commenting out or removing the `@Ignore` annotations prepending other tests.

When all tests pass, congratulations!

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

167 entries across 167 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.179 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.178 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.177 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.176 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.175 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.174 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.173 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.172 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.171 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.170 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.169 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.167 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.166 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.165 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.164 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.163 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.162 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.161 tracks/groovy/exercises/word-count/README.md
trackler-2.2.1.160 tracks/groovy/exercises/word-count/README.md