package
0.0.0-20210923165938-3c783569b233
Repository: https://github.com/harshvaragiya/learninggo.git
Documentation: pkg.go.dev

# README

Exercise: Maps

  • Implement WordCount. It should return a map of the counts of each “word” in the string s.
  • The wc.Test function runs a test suite against the provided function and prints success or failure.

Hints

You might find strings.Fields helpful.

Output

Output.png

# Functions

No description provided by the author