diff --git a/dsa-solutions/lc-solutions/0100-0199/0106-construct-binary-tree-from-inorder.md b/dsa-solutions/lc-solutions/0100-0199/0106-construct-binary-tree-from-inorder.md index 8c23f27bb..e2d77e10a 100644 --- a/dsa-solutions/lc-solutions/0100-0199/0106-construct-binary-tree-from-inorder.md +++ b/dsa-solutions/lc-solutions/0100-0199/0106-construct-binary-tree-from-inorder.md @@ -14,6 +14,7 @@ description: "Given two integer arrays inorder and postorder where inorder is th --- + ### Problem Description Given two integer arrays inorder and postorder where inorder is the inorder traversal of a binary tree and postorder is the postorder traversal of the same tree, construct and return the binary tree.