Ejemplo n.º 1
0
 public static IList <int> FindLargestValues(LeetCode515TreeNode root)
 {
     if (root == null)
     {
         return(default);
Ejemplo n.º 2
0
 public LeetCode515TreeNode(int val = 0, LeetCode515TreeNode left = null, LeetCode515TreeNode right = null)
 {
     this.val   = val;
     this.left  = left;
     this.right = right;
 }