1
0
Fork 0
advent-of-code/2020/07/small_tree.hs
Zach Perrault a4664f9b02
dnf: day 7
2020-12-08 13:22:08 -05:00

24 lines
445 B
Haskell

[
Node {
rootLabel = 7,
subForest = [
Node {
rootLabel = 1,
subForest = [
Node {
rootLabel = 4,
subForest = []
},
Node {
rootLabel = 3,
subForest = []
}
]
},
Node {
rootLabel = 8,
subForest = []
}
]
}
]