Skip to content

Instantly share code, notes, and snippets.

View vishuvenu's full-sized avatar
🎯
Focusing

Vishnu Aynipilly Venu vishuvenu

🎯
Focusing
View GitHub Profile
@vishuvenu
vishuvenu / wordcount.go
Created August 15, 2021 16:28
WordCount.go
package main
import (
"golang.org/x/tour/wc"
"strings"
)
func WordCount(s string) map[string]int {
wc := make(map[string]int)