Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 456 Bytes

File metadata and controls

19 lines (15 loc) · 456 Bytes

Problem

Binary Tree Right Side View Total Accepted: 101 Total Submissions: 501 My Submissions Question Solution Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

For example: Given the following binary tree, 1 <--- /
2 3 <--- \
5 4 <--- You should return [1, 3, 4].

Solution

Layered order traversal