Interview Guides
Given the root of a binary tree, return a list of node values visible when the tree is viewed from the right side, ordered from top to bottom. The input is the root node of a binary tree, and the output is a list of integers.
0 <= number of nodes <= 10^4-1000 <= Node.val <= 1000O(n) time is expected