Symmetric Binary Tree
Given the root to a binary tree root
, return whether it is symmetric.
Constraints
n ≤ 100,000
wheren
is the number of nodes inroot
https://binarysearch.com/problems/Symmetric-Binary-Tree
Examples
Example 1
Input
- root =
Output
- answer =
True
Example 2
Input
- root =
Output
- answer =
False
Example 3
Input
- root =
Output
- answer =
False
Example 4
Input
- root =
Output
- answer =
False
Leave a comment