Tree: Depth-First Search - Binary Tree Maximum Path Sum
Given the following memoization cache after computing max gains for nodes in a binary tree:
{NodeA: 5, NodeB: 3, NodeC: 0}
If NodeA is the root with left child NodeB and right child NodeC, and max_sum is 10, which of the following could be the node values for NodeA, NodeB, and NodeC?
