-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSame Tree.py
More file actions
32 lines (27 loc) · 773 Bytes
/
Same Tree.py
File metadata and controls
32 lines (27 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Definition for a binary tree node
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
# @param p, a tree node
# @param q, a tree node
# @return a boolean
def isSameTree(self, p, q):
if p is None and q is None:
return True
if p is None and q is not None or p is not None and q is None:
return False
if p.val == q.val:
return self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right)
else:
return False
p = TreeNode(1)
p.left = TreeNode(2)
p.left.right = TreeNode(2)
q = TreeNode(1)
q.left = TreeNode(2)
q.left.right = TreeNode(3)
result = Solution()
print result.isSameTree(p, q)