111. Minimum Depth of Binary Tree
Easy
Input: root = [3,9,20,null,null,15,7]
Output:
2Input: root = [2,null,3,null,4,null,5,null,6]
Output:
5Last updated
Input: root = [3,9,20,null,null,15,7]
Output:
2Input: root = [2,null,3,null,4,null,5,null,6]
Output:
5Last updated