Skip to content

Commit 9da6024

Browse files
committed
Create readme : 0111-minimum-depth-of-binary-tree
1 parent 8d2b023 commit 9da6024

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

  • LeetCode/Easy/0111-minimum-depth-of-binary-tree
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<h2><a href="https://leetcode.com/problems/minimum-depth-of-binary-tree">111. Minimum Depth of Binary Tree</a></h2><h3>Easy</h3><hr><p>Given a binary tree, find its minimum depth.</p>
2+
3+
<p>The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.</p>
4+
5+
<p><strong>Note:</strong>&nbsp;A leaf is a node with no children.</p>
6+
7+
<p>&nbsp;</p>
8+
<p><strong class="example">Example 1:</strong></p>
9+
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/12/ex_depth.jpg" style="width: 432px; height: 302px;" />
10+
<pre>
11+
<strong>Input:</strong> root = [3,9,20,null,null,15,7]
12+
<strong>Output:</strong> 2
13+
</pre>
14+
15+
<p><strong class="example">Example 2:</strong></p>
16+
17+
<pre>
18+
<strong>Input:</strong> root = [2,null,3,null,4,null,5,null,6]
19+
<strong>Output:</strong> 5
20+
</pre>
21+
22+
<p>&nbsp;</p>
23+
<p><strong>Constraints:</strong></p>
24+
25+
<ul>
26+
<li>The number of nodes in the tree is in the range <code>[0, 10<sup>5</sup>]</code>.</li>
27+
<li><code>-1000 &lt;= Node.val &lt;= 1000</code></li>
28+
</ul>

0 commit comments

Comments
 (0)