Skip to content

Instantly share code, notes, and snippets.

@rabellamy
Last active March 30, 2017 17:19
Show Gist options
  • Save rabellamy/d1e8e76bf77b7461737192030829f7da to your computer and use it in GitHub Desktop.
Save rabellamy/d1e8e76bf77b7461737192030829f7da to your computer and use it in GitHub Desktop.
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