()
| 6 | ) |
| 7 | |
| 8 | func main() { |
| 9 | fmt.Print(groupAnagrams([]string{"eat", "tea", "tan", "ate", "nat", "bat"})) |
| 10 | } |
| 11 | |
| 12 | func groupAnagrams(strs []string) [][]string { |
| 13 | sortedHash := make(map[string][]string) |
nothing calls this directly
no test coverage detected