Evaluate an N-ary tree where internal nodes are operations (sum, product, min, max) and leaves are numbers.
node
sum
0
1
1
product
2
3
4
2
5
3
6
tree=Array(7)
Step 1 / 3
Step 1:
Evaluate children first, then apply the operation at the node.
Pointers: node=0
Focus: select @ [0]