interview_python icon indicating copy to clipboard operation
interview_python copied to clipboard

style: code style

Open oillamp opened this issue 4 years ago • 2 comments

oillamp avatar Mar 03 '21 02:03 oillamp

why u so diao ?

wenma avatar Mar 03 '21 02:03 wenma

def isSameTree(p, q):
    if p and q:
        return p.val == q.val and isSameTree(p.left,q.left) and isSameTree(p.right,q.right)

    return p is None and q is None

ha~

yokonsan avatar Mar 11 '21 01:03 yokonsan