Sha256: 08426724e8ca73c5fc6971de7d410b8eb85e461f4d075f525dd818bc492d8205
Contents?: true
Size: 657 Bytes
Versions: 68
Compression:
Stored size: 657 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 ``` 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
68 entries across 68 versions & 1 rubygems