Skip to content

Commit 300021f

Browse files
authored
Update README.md
1 parent 83745f8 commit 300021f

File tree

1 file changed

+1
-2
lines changed
  • solution/0100-0199/0103.Binary Tree Zigzag Level Order Traversal

1 file changed

+1
-2
lines changed

solution/0100-0199/0103.Binary Tree Zigzag Level Order Traversal/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,7 @@ class Solution {
147147
}
148148
```
149149

150-
```
151-
DFS:
150+
```DFS:
152151
class Solution {
153152
public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
154153
List<List<Integer>> result = new ArrayList<>();

0 commit comments

Comments
 (0)