Given the roots of two binary trees p and q, write a function to check if they are the same or not.
1 1
/ \ / \
2 3 2 3
input: p = [1, 2, 3], q = [1, 2, 3]
Output: true
1 1
/ \
2 2
input: p = [1, 2], q = [1, null, 2]
Output: false
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} p
* @param {TreeNode} q
* @return {boolean}
*/
var isSameTree = function(p, q) {
if (!p && !q) return true
if (p?.val !== q?.val) return false
return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
};