Tree: Depth-First Search - Construct Tree from Inorder and Postorder
Given the following code snippet for building a tree from inorder and postorder traversals, what is the value of
inorder_index after processing the first iteration of the for-loop when inorder = [9,3,15,20,7] and postorder = [9,15,7,20,3]?