24. Longest Univalue Path
Last updated
Was this helpful?
Last updated
Was this helpful?
Given the root
of a binary tree, return the length of the longest path, where each node in the path has the same value. This path may or may not pass through the root.
The length of the path between two nodes is represented by the number of edges between them.
Example 1:
Example 2:
Approach: Similar to diameter