.. | ||
.gradle/2.9/taskArtifacts | ||
build | ||
src | ||
build.gradle | ||
README.md |
Word Count
Write a program that given a phrase can count the occurrences of each word in that phrase.
For example for the input "olly olly in come free"
olly: 2
in: 1
come: 1
free: 1
Source
The golang tour view source