package main import . "nc_tools" func lowestCommonAncestor( root *TreeNode , o1 int , o2 int ) int { if root == nil { return -1 } node := isParent(root,o1,o2) if node != nil { return node.Val } return -1 } func isParent(root *TreeNode, o1, o2 in...