각 트리의 노드 갯수 [0, 100]. -10^4 <= Node.val <= 10^4
roots of two binary trees p and q
두 트리가 동일한 트리인가? (참/거짓)
JSON.stringify로 자바스크립트 객체를 문자열로 변환 후 비교 (shallow 비교만 가능함)
var isSameTree = function (p, q) { return JSON.stringify(p) === JSON.stringify(q); };
😊