Skip to content

Commit 5b65026

Browse files
author
Joseph Luce
authored
Update 105_construct_binary_tree_from_preorder_and_inorder_traversal.md
1 parent a2f8d74 commit 5b65026

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

leetcode/medium/105_construct_binary_tree_from_preorder_and_inorder_traversal.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
- N = Number of elements in list
77

88
The preorder traversal is the pinnacle element.
9-
Without the preorder traversal, we will not be able to construct a binary tree given any combination of the other traversals.
109
The property to be able to find the root node of the preorder traversal is key.
1110

1211
Given preorder of [A,B,D,E,C,F,G] and inorder of [D,B,E,A,F,C,G].

0 commit comments

Comments
 (0)