30:00
Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center).
The number of nodes is in the range [1,1000][1, 1000][1,1000].
−100≤Node.val≤100-100 \leq \text{Node.val} \leq 100−100≤Node.val≤100
1
2
3
4