Construct Binary Tree from Preorder & Inorder (#105)

Given two integer arrays preorder and inorder where preorder is the preorder traversal of a binary tree and inorder is the inorder traversal of the same tree, construct and return the binary tree.

Company Tags: Amazon, Google

Core Concept: Tree, Preorder, Inorder

Solve on LeetCode