Skip to content

Instantly share code, notes, and snippets.

@sausheong
Created May 3, 2022 03:25
Show Gist options
  • Select an option

  • Save sausheong/300654c70871f14b3d442a0983525a7e to your computer and use it in GitHub Desktop.

Select an option

Save sausheong/300654c70871f14b3d442a0983525a7e to your computer and use it in GitHub Desktop.
mst
func (g *Graph) HasNode(name string) (yes bool) {
for _, n := range g.Nodes {
if n.name == name {
yes = true
}
}
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment