1
0
Fork 0
advent-of-code/2020/07/small_tree.hs

25 lines
445 B
Haskell
Raw Normal View History

2022-09-21 09:19:52 -04:00
[
Node {
rootLabel = 7,
subForest = [
Node {
rootLabel = 1,
subForest = [
Node {
rootLabel = 4,
subForest = []
},
Node {
rootLabel = 3,
subForest = []
}
]
},
Node {
rootLabel = 8,
subForest = []
}
]
}
]