exercism/java/word-count
Brian Buller 50f4a86fd8 Initial Commit 2016-08-13 18:20:14 -05:00
..
.gradle/2.9/taskArtifacts Initial Commit 2016-08-13 18:20:14 -05:00
build Initial Commit 2016-08-13 18:20:14 -05:00
src Initial Commit 2016-08-13 18:20:14 -05:00
README.md Initial Commit 2016-08-13 18:20:14 -05:00
build.gradle Initial Commit 2016-08-13 18:20:14 -05:00

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