Design Gurus Logo
Level Averages in a Binary Tree (easy)

Problem Statement

Given a binary tree, populate an array to represent the averages of all of its levels.

Example 1:

Image

Example 2:

Image

Constraints:

  • The number of nodes in the tree is in the range [1, 10<sup>4</sup>].
  • -2<sup>31</sup> <= Node.val <= 2<sup>31</sup> - 1

Try it yourself

Try solving this question here:

Python3
Python3

. . . .

.....

.....

.....

Unlock this and all other premium problems.
No code editor for this lesson
This lesson focuses on concepts and theory