Description
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.
Example
1 | Input: [1,2,3,null,5,null,4] |
Solution
1 | /** |
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.
1 | Input: [1,2,3,null,5,null,4] |
1 | /** |