MCPcopy 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
84const isSame = (p, q) =>
85 isSameNode(p, q) &&
86 isSameNode(p.left, q.left) &&
87 isSameNode(p.right, q.right);

Callers 1

bfsFunction · 0.70

Calls 1

isSameNodeFunction · 0.85

Tested by

no test coverage detected