Given the root of a binary tree, return true if it is a mirror of itself (symmetric around its center), or false otherwise.
Input / output
root: TreeNode (JSON test fixture is a LeetCode-style level-order array, e.g. [1, 2, 2, 3, 4, 4, 3], with null for a missing child)booleanCan you solve it both recursively and iteratively with a queue?