export function TreeNode(x) { this.val = x this.left = null this.right = null } export function hasPathSum(root, sum) { console.log(root, sum) }