We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63393f2 commit fc16a88Copy full SHA for fc16a88
src/main/java/com/fishercoder/solutions/_513.java
@@ -5,36 +5,6 @@
5
import java.util.LinkedList;
6
import java.util.Queue;
7
8
-/**
9
- * 513. Find Bottom Left Tree Value
10
- *
11
- * Given a binary tree, find the leftmost value in the last row of the tree.
12
-
13
- Example 1:
14
- Input:
15
16
- 2
17
- / \
18
- 1 3
19
20
- Output:
21
- 1
22
- Example 2:
23
24
25
26
27
28
- 2 3
29
- / / \
30
- 4 5 6
31
- /
32
- 7
33
34
35
36
- Note: You may assume the tree (i.e., the given root node) is not NULL.
37
- */
38
public class _513 {
39
40
public static class Solution1 {
0 commit comments