Skip to content

Commit 7bc0dc7

Browse files
committed
Merge branch 'master' of https://github.com/doocs/leetcode
2 parents 2eb6e15 + e5c550d commit 7bc0dc7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

solution/0100.Same Tree/Solution.java

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
class Solution {
2+
public boolean isSameTree(TreeNode p, TreeNode q) {
3+
if (p==null && q==null) return true;
4+
if (p==null || q==null || p.val!=q.val) return false;
5+
return isSameTree(p.left,q.left) && isSameTree(p.right,q.right);
6+
}
7+
}

0 commit comments

Comments
 (0)