README.md (416B)
1 # Word Count 2 3 Given a phrase, count the occurrences of each word in that phrase. 4 5 For example for the input `"olly olly in come free"` 6 7 ```plain 8 olly: 2 9 in: 1 10 come: 1 11 free: 1 12 ``` 13 14 ## Source 15 16 This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour. 17 18 ## Submitting Incomplete Solutions 19 It's possible to submit an incomplete solution so you can see how others have completed the exercise.