export default class TreeNode { constructor (val) { this.val = val this.left = null this.right = null } }