Exercise: Maps
Implement WordCount. It should return a map[string]int counting how many times each word appears in s.
wc.Test will run your function against several test cases and report pass or fail.
Hint: strings.Fields splits a string on whitespace — it’ll save you some work.