2022-04-24 17:05:32 +08:00
< p > You are given the < code > root< / code > of a < strong > binary tree< / strong > that consists of exactly < code > 3< / code > nodes: the root, its left child, and its right child.< / p >
< p > Return < code > true< / code > < em > if the value of the root is equal to the < strong > sum< / strong > of the values of its two children, or < / em > < code > false< / code > < em > otherwise< / em > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-04-24 17:05:32 +08:00
< img alt = "" src = "https://assets.leetcode.com/uploads/2022/04/08/graph3drawio.png" style = "width: 281px; height: 199px;" / >
< pre >
< strong > Input:< / strong > root = [10,4,6]
< strong > Output:< / strong > true
< strong > Explanation:< / strong > The values of the root, its left child, and its right child are 10, 4, and 6, respectively.
10 is equal to 4 + 6, so we return true.
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-04-24 17:05:32 +08:00
< img alt = "" src = "https://assets.leetcode.com/uploads/2022/04/08/graph3drawio-1.png" style = "width: 281px; height: 199px;" / >
< pre >
< strong > Input:< / strong > root = [5,3,1]
< strong > Output:< / strong > false
< strong > Explanation:< / strong > The values of the root, its left child, and its right child are 5, 3, and 1, respectively.
5 is not equal to 3 + 1, so we return false.
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > The tree consists only of the root, its left child, and its right child.< / li >
< li > < code > -100 < = Node.val < = 100< / code > < / li >
< / ul >