Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.22 KB

_100. Same Tree.md

File metadata and controls

50 lines (33 loc) · 1.22 KB

All prompts are owned by LeetCode. To view the prompt, click the title link above.

Back to top


First completed : July 03, 2024

Last updated : July 03, 2024


Related Topics : Tree, Depth-First Search, Breadth-First Search, Binary Tree

Acceptance Rate : 63.55 %


Solutions

Python

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def isSameTree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:

        if not p and not q :
            return True

        if not p or not q :
            return False
        
        if p.val != q.val :
            return False
        
        return self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right)