We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center).
Testcases:
Input: root = [1,2,2,3,4,4,3] Output: true
Input: root = [1,2,2,null,3,null,3] Output: false
The text was updated successfully, but these errors were encountered:
Hi @akanksha1131 , I will assign this issue to you. Please resubmit a PR.
Sorry, something went wrong.
hello , i am Sharvi burse from SY Comp , can you please assign it to me?
No branches or pull requests
Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center).
Testcases:
Input: root = [1,2,2,3,4,4,3]
Output: true
Input: root = [1,2,2,null,3,null,3]
Output: false
The text was updated successfully, but these errors were encountered: