Tree: Depth-First Search - Sum Root to Leaf Numbers
Given the following partial memoization cache after processing a binary tree for sum root-to-leaf numbers:
memo = { (node_id=5, current_number=12): 34, (node_id=3, current_number=1): 46 }
If the final sum returned is 80, which of the following could be the original root-to-leaf path values?
