Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 443 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 443 Bytes

<< [03] Serialize a tree into a string and back >>

Given the root to a binary tree, implement serialize(root), which serializes the tree into a string, and deserialize(s), which deserializes the string back into the tree.

Example:

>>> serialize, deserialize = coding_problem_03()
>>> s = '>>> YOUR OWN TREE ENCODING HERE <<<'
>>> isinstance(s, str)
True

>>> s == serialize(deserialize(s))
True