662 Maximum Width of Binary Tree
662. Maximum Width of Binary Tree
1. Question
Input:
1
/ \
3 2
/ \ \
5 3 9
Output:
4
Explanation:
The maximum width existing in the third level with the length 4 (5,3,null,9).2. Implementation
3. Time & Space Complexity
Last updated