Easy
Given the root of a binary tree, check whether it is a mirror of itself (symmetric around its center).
root
Input: root = [1,2,2,3,4,4,3] Output: true
Input: root = [1,2,2,null,3,null,3] Output: false