Skip to content

Commit

Permalink
Update construct-binary-tree-from-preorder-and-postorder-traversal.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Aug 19, 2018
1 parent 0015e0f commit 96a9fdc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def __init__(self, x):
self.left = None
self.right = None


class Solution(object):
def constructFromPrePost(self, pre, post):
"""
Expand Down

0 comments on commit 96a9fdc

Please sign in to comment.