Skip to content

Commit 4a9e4f7

Browse files
authored
Update Average of Levels in Binary Tree - Leetcode 637.py
1 parent c74d710 commit 4a9e4f7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Average of Levels in Binary Tree - Leetcode 637/Average of Levels in Binary Tree - Leetcode 637.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,18 @@ def averageOfLevels(self, root: Optional[TreeNode]) -> List[float]:
1212
q.append(root)
1313

1414
while q:
15-
avg = 0
15+
summ = 0
1616
n = len(q)
1717
for _ in range(n):
1818
node = q.popleft()
19-
avg += node.val
19+
summ += node.val
2020

2121
if node.left:
2222
q.append(node.left)
2323
if node.right:
2424
q.append(node.right)
2525

26-
avg /= n
27-
avgs.append(avg)
26+
avgs.append(summ / n)
2827

2928
return avgs
3029
# Time: O(n)

0 commit comments

Comments
 (0)