Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Zig Zag Traversal Binary Tree #173

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

fizznix
Copy link

@fizznix fizznix commented Oct 16, 2021

Zig Zag Traversal: Given the root of a binary tree, returns the zigzag level order traversal of its nodes' values. (i.e., from left to right, then right to left for the next level and alternate between).
Input: root = [3,9,20,null,null,15,7]
Output: [ [3], [20,9], [15,7] ]

Copy link
Collaborator

@OptiMus-cyber OptiMus-cyber left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants