Skip to content

Commit 8ed1f59

Browse files
authored
Fix missing newline at end of juhui-jeong.java
Add missing newline at the end of the file.
1 parent 9a676fd commit 8ed1f59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

same-tree/juhui-jeong.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ public boolean isSameTree(TreeNode p, TreeNode q) {
99
if (p.val != q.val) return false;
1010
return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)