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