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
Given the following binary tree,
123456
1 <---
/ \
2 3 <---
\ \
5 4 <---
You should return [1, 3, 4].
Solution
Java: Recursive
File /Users/minli/Desktop/Personal/sdytlm.github.io/source/downloads/code/LeetCode/Java/Binary-Tree-Right-Size-View.java could not be found