MJay

1161 본문

Programming/LeetCode

1161

MJSon 2019. 10. 28. 09:33

1161. Maximum Level Sum of a Binary Tree

Medium

1289FavoriteShare

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:

Input: [1,7,0,7,-8,null,null] Output: 2 Explanation: Level 1 sum = 1. Level 2 sum = 7 + 0 = 7. Level 3 sum = 7 + -8 = -1. So we return the level with the maximum sum which is level 2.

 

recursive 

근데 메모리 오류가뜨네..

 

Discussion에서 보고왔다.

 

DFS를 뜻하는거같다.

 

'Programming > LeetCode' 카테고리의 다른 글

1140  (0) 2019.10.29
877  (0) 2019.10.28
997  (0) 2019.10.27
750  (0) 2019.10.26
338 Bits  (0) 2019.10.22