Last active
March 30, 2017 17:19
-
-
Save rabellamy/d1e8e76bf77b7461737192030829f7da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func equal(x, y map[string] int) bool { | |
if len(x) != len(y) { | |
return false | |
} | |
for k, xv := range x { | |
if yv, ok := y[k]; !ok || yv != xv { | |
return false | |
} | |
} | |
return true | |
} | |
equal(map[string] int{" A": 0}, map[string] int{" B": 42}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment