Day 8 part 1 solution.
This commit is contained in:
parent
31f60eca0e
commit
4d567425a7
4 changed files with 108 additions and 1 deletions
25
2018/internal/day08/debug.go
Normal file
25
2018/internal/day08/debug.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package day08
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func DebugPrintTree(root *Node) {
|
||||
debugPrintTreeR(root, 0)
|
||||
}
|
||||
|
||||
func debugPrintTreeR(node *Node, indent int) {
|
||||
for i := 0; i < indent; i++ {
|
||||
fmt.Printf(" ")
|
||||
}
|
||||
fmt.Printf("Children: %d | Metadata: ", len(node.Children))
|
||||
|
||||
for _, md := range node.Metadata {
|
||||
fmt.Printf("%d ", md)
|
||||
}
|
||||
fmt.Println()
|
||||
|
||||
for _, child := range node.Children {
|
||||
debugPrintTreeR(child, indent+1)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue