Categorygithub.com/SmartsYoung/LeetCode-in-GoAlgorithms0515.find-largest-value-in-each-tree-row
package
0.0.0-20210525112244-a601ee6fe7cf
Repository: https://github.com/smartsyoung/leetcode-in-go.git
Documentation: pkg.go.dev

# README

515. Find Largest Value in Each Tree Row

题目

You need to find the largest value in each row of a binary tree.

Example:

Input:

          1
         / \
        3   2
       / \   \
      5   3   9

Output: [1, 3, 9]

解题思路

见程序注释

# Type aliases

No description provided by the author