Tree: Depth-First Search - Construct Tree from Inorder and Postorder
Consider the optimized recursive solution for building a tree from inorder and postorder traversals. Given inorder = [1] and postorder = [1], what is the structure of the constructed tree?
