Tree: Depth-First Search - Construct Tree from Inorder and Postorder
Given the following optimized recursive code snippet for building a tree from inorder and postorder traversals, what is the value of the root node constructed for inorder = [9,3,15,20,7] and postorder = [9,15,7,20,3]?
