0515. Find Largest Value in Each Tree Row

https://leetcode.com/problems/find-largest-value-in-each-tree-row

Description

Given the root of a binary tree, return an array of the largest value in each row of the tree (0-indexed).

Example 1:

Example 2:

Example 3:

Example 4:

Example 5:

Constraints:

  • The number of nodes in the tree will be in the range [0, 104].

  • -231 <= Node.val <= 231 - 1

ac

Last updated

Was this helpful?