Skip to content

Commit 4cd3f81

Browse files
committed
Create README - LeetHub
1 parent a7a62c0 commit 4cd3f81

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: find-bottom-left-tree-value/README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<h2>513. Find Bottom Left Tree Value</h2><h3>Medium</h3><hr><div><p>Given the <code>root</code> of a binary tree, return the leftmost value in the last row of the tree.</p>
2+
3+
<p>&nbsp;</p>
4+
<p><strong>Example 1:</strong></p>
5+
<img alt="" src="https://assets.leetcode.com/uploads/2020/12/14/tree1.jpg" style="width: 302px; height: 182px;">
6+
<pre><strong>Input:</strong> root = [2,1,3]
7+
<strong>Output:</strong> 1
8+
</pre>
9+
10+
<p><strong>Example 2:</strong></p>
11+
<img alt="" src="https://assets.leetcode.com/uploads/2020/12/14/tree2.jpg" style="width: 432px; height: 421px;">
12+
<pre><strong>Input:</strong> root = [1,2,3,4,null,5,6,null,null,7]
13+
<strong>Output:</strong> 7
14+
</pre>
15+
16+
<p>&nbsp;</p>
17+
<p><strong>Constraints:</strong></p>
18+
19+
<ul>
20+
<li>The number of nodes in the tree is in the range <code>[1, 10<sup>4</sup>]</code>.</li>
21+
<li><code>-2<sup>31</sup> &lt;= Node.val &lt;= 2<sup>31</sup> - 1</code></li>
22+
</ul>
23+
</div>

0 commit comments

Comments
 (0)