#!/usr/bin/env python
# -*- coding:utf-8 -*-
class Solution:
def lowestCommonAncestor(self, root: 'TreeNode', p: 'Tr
2019-09-03