func isAcronym(words []string, s string) bool { if len(words) != len(s) { return false } for i, c := range s { if byte(c) != words[i][0] { return false } } return true }