Leetcode112:路徑總和

public boolean hasPathSum(TreeNode root, int sum) { if (root == null) { return false; } if (root.left == null && root.right == null) { return root.val==sum; } return hasPathSum(root.l
相關文章
相關標籤/搜索