Sha256: 58a55d9e4ad07886cb1e7c05e6fbfa5816e7d682d5e295d5efe01d51a7ccaa12
Contents?: true
Size: 785 Bytes
Versions: 106
Compression:
Stored size: 785 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][]. [exercism help page]: http://exercism.io/languages/lfe To run the provided tests, you will need `make`. Open a terminal window and run the following from the exercise directory: ```sh make test ``` You should now be able to see the results of the test suite for the exercise. ## 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