Skip to content

Commit 72e41e9

Browse files
committed
fix: update
1 parent 2c3c00e commit 72e41e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solution/0500-0599/0545.Boundary of Binary Tree/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public List<Integer> boundaryOfBinaryTree(TreeNode root) {
1111
dfs(left, root.left, 0);
1212
dfs(leaves, root, 1);
1313
dfs(right, root.right, 2);
14-
14+
1515
ans.addAll(left);
1616
ans.addAll(leaves);
1717
Collections.reverse(right);

0 commit comments

Comments
 (0)