1161. Maximum Level Sum of a Binary Tree
https://leetcode.com/problems/maximum-level-sum-of-a-binary-tree
Description
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
ac
Last updated
Was this helpful?