671 Second Minimum Node In a Binary Tree
671. Second Minimum Node In a Binary Tree
1. Question
Input:
2
/ \
2 5
/ \
5 7
Output:
5
Explanation:
The smallest value is 2, the second smallest value is 5.2. Implementation
3. Time & Space Complexity
Last updated