remove dynamic equality

This commit is contained in:
2025-06-16 13:48:09 -05:00
parent 9c0565d34f
commit 794baf8598
70 changed files with 462 additions and 461 deletions

View File

@@ -27,7 +27,7 @@ function TreeNode(left, right) {
}
function itemCheck(node) {
if (node.left === null)
if (node.left == null)
return 1;
return 1 + itemCheck(node.left) + itemCheck(node.right);
}