MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / main

Function main

tasks/49.go:8–10  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6)
7
8func main() {
9 fmt.Print(groupAnagrams([]string{"eat", "tea", "tan", "ate", "nat", "bat"}))
10}
11
12func groupAnagrams(strs []string) [][]string {
13 sortedHash := make(map[string][]string)

Callers

nothing calls this directly

Calls 2

groupAnagramsFunction · 0.85
PrintMethod · 0.80

Tested by

no test coverage detected