Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/neetcode-gh/leetcode
/ isSame
Function
isSame
javascript/0100-same-tree.js:84–87 ·
view source on GitHub ↗
(p, q)
Source
from the content-addressed store, hash-verified
82
};
83
84
const
isSame = (p, q) =>
85
isSameNode(p, q) &&
86
isSameNode(p.left, q.left) &&
87
isSameNode(p.right, q.right);
Callers
1
bfs
Function · 0.70
Calls
1
isSameNode
Function · 0.85
Tested by
no test coverage detected