Skip to content

原题链接

LeetCode

typescript
function isSameTree(p: TreeNode | null, q: TreeNode | null): boolean {
   if(!p && !q) return true;
   if(!p || !q) return false;

   return p.val === q.val && isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
};