#100. Same Tree
https://leetcode.com/problems/same-tree/description/?envType=daily-question&envId=2024-02-27
var isSameTree = function(p, q) {
return JSON.stringify(q) === JSON.stringify(p)
};
ย
https://leetcode.com/problems/same-tree/description/?envType=daily-question&envId=2024-02-27
var isSameTree = function(p, q) {
return JSON.stringify(q) === JSON.stringify(p)
};