Back
Close

Reproduce binary tree

tsv
3,263 views

Task

Binary tree is traversed twise:

  1. left -> root -> right (inorder)
  2. root -> left -> right (preorder)

Having two arrays you need to reconstruct this binary tree

Solution

Implemented in python

Tests

Implemented in python
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io