Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: code style #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

style: code style #91

wants to merge 1 commit into from

Conversation

oillamp
Copy link

@oillamp oillamp commented Mar 3, 2021

No description provided.

@wenma
Copy link

wenma commented Mar 3, 2021

why u so diao ?

@yokonsan
Copy link

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~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants