Sha256: dfed6432f420f3329630077eb185d0fd7a1db105a90916d892c162b58a637d93
Contents?: true
Size: 591 Bytes
Versions: 92
Compression:
Stored size: 591 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 ``` Run the tests with: ```bash bats word_count_test.sh ``` After the first test(s) pass, continue by commenting out or removing the `skip` annotations prepending other tests. ## 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
92 entries across 92 versions & 1 rubygems