Skip to content

Commit 78ccd2b

Browse files
committed
updated format'
1 parent 9829ced commit 78ccd2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dsa-solutions/lc-solutions/0100-0199/0105-Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Given two integer arrays preorder and inorder where preorder is the preorder tra
3030

3131
### Constraints
3232

33-
- 1 <= preorder.length <= 3000
34-
- inorder.length == preorder.length
35-
- -3000 <= preorder[i], inorder[i] <= 3000
33+
- $1 \leq \text{preorder.length} \leq 3000$
34+
- $\text{inorder.length} == \text{preorder.length}$
35+
- $-3000 \leq \text{preorder}[i], \text{inorder}[i] \leq 3000$
3636
- preorder and inorder consist of unique values.
3737
- Each value of inorder also appears in preorder.
3838
- preorder is guaranteed to be the preorder traversal of the tree.

0 commit comments

Comments
 (0)