Same Tree

Problem Summary

What is Being Asked?

Main Concepts Used

Time & Space Complexity

Code

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

        # at this point, we know for sure both nodes exist
        if p.val != q.val:
            return False

        return self.isSameTree(p.left, q.left) and self.isSameTree(p.right, q.right)