Skip to content

Commit a628bc0

Browse files
refactor 102
1 parent 92089c7 commit a628bc0

File tree

1 file changed

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

1 file changed

+0
-21
lines changed

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

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,6 @@
77
import java.util.List;
88
import java.util.Queue;
99

10-
/**
11-
* 102. Binary Tree Level Order Traversal
12-
*
13-
* Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).
14-
*
15-
* For example:
16-
* Given binary tree [3,9,20,null,null,15,7],
17-
* 3
18-
* / \
19-
* 9 20
20-
* / \
21-
* 15 7
22-
*
23-
* return its level order traversal as:
24-
*
25-
* [
26-
* [3],
27-
* [9,20],
28-
* [15,7]
29-
* ]
30-
*/
3110
public class _102 {
3211

3312
public static class Solution1 {

0 commit comments

Comments
 (0)