var checkTree = function(root) { return root.val === root.left.val + root.right.val }
쉬운 문제였다. 루트 노드의 값과 자식 노드들의 값의 총합을 비교하면 끝이다.