Skip to content

Commit fc16a88

Browse files
refactor 513
1 parent 63393f2 commit fc16a88

File tree

1 file changed

+0
-30
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-30
lines changed

src/main/java/com/fishercoder/solutions/_513.java

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,6 @@
55
import java.util.LinkedList;
66
import java.util.Queue;
77

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-
Input:
24-
25-
26-
1
27-
/ \
28-
2 3
29-
/ / \
30-
4 5 6
31-
/
32-
7
33-
34-
Output:
35-
7
36-
Note: You may assume the tree (i.e., the given root node) is not NULL.
37-
*/
388
public class _513 {
399

4010
public static class Solution1 {

0 commit comments

Comments
 (0)