MCPcopy Create free account
hub / github.com/TheAlgorithms/Go / Root

Struct Root

project_euler/problem_18/root.go:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package problem18
2
3type Root struct {
4 ID int
5 NodeValue NodeValue
6 NodeLeft *Edge
7 NodeRight *Edge
8}
9
10func (n *Root) Value() NodeValue {
11 return n.NodeValue

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected