| 33 | NodeType string |
| 34 | |
| 35 | Node interface { |
| 36 | Value() NodeValue |
| 37 | GetID() int |
| 38 | Left() Node |
| 39 | Right() Node |
| 40 | LeftIsNil() bool |
| 41 | RightIsNil() bool |
| 42 | HasSpace() bool |
| 43 | Kind() string |
| 44 | SetParent(Node) |
| 45 | CreateChild(NodeValue, int) Node |
| 46 | Insert(Node) |
| 47 | } |
| 48 | ) |
| 49 | |
| 50 | func Problem18(input []string, deep int) int { |
no outgoing calls
no test coverage detected