export function TreeNode(x) { this.val = x this.left = null this.right = null } export function lowestCommonAncestorFromNode(root, o1, o2) { console.log(root, o1, o2) }