My LeetCode grinding. Trying to do a problem a day.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

problem.txt 549B

12345678910111213
  1. Return the root node of a binary search tree that matches the given preorder traversal.
  2. (Recall that a binary search tree is a binary tree where for every node, any descendant of node.left has a value < node.val, and any descendant of node.right has a value > node.val. Also recall that a preorder traversal displays the value of the node first, then traverses node.left, then traverses node.right.)
  3. Example 1:
  4. Input: [8,5,1,7,10,12]
  5. Output: [8,5,10,1,7,null,12]
  6. Note:
  7. 1 <= preorder.length <= 100
  8. The values of preorder are distinct.