1161. Maximum Level Sum of a Binary Tree
Medium
Last updated
Medium
Last updated
Given the root
of a binary tree, the level of its root is 1
, the level of its children is 2
, and so on.
Return the smallest level x
such that the sum of all the values of nodes at level x
is maximal.
Example 1:
Example 2:
Constraints:
The number of nodes in the tree is in the range [1, 104]
.
-105 <= Node.val <= 105
Runtime: 143 ms, faster than 84.33%
Memory Usage: 8.7 MB, less than 55.56%