Traverse In A Zig Zag - Python Question
Challenges
• Asked about 1 year ago by Anonymous
The two examples present in the question contradict each other.
For the first tree,
1
/ \
2 3
/ \
4 5
The traversal presented is is left to right on second level and right to left on third level, giving us [[1], [2, 3], [5...