LC 199. Binary Tree Right Side View
https://leetcode.com/problems/binary-tree-right-side-view/description/?envType=study-plan-v2&envId=top-interview-150
class Solution {
public:
vector<int> rightSideView(TreeNode* root) {
if (root == NULL) return