Symmetric Binary Tree

# Introduction In this challenge, we'll work with binary trees. Our goal is to write the `isSymmetric` function to determine if a given binary tree is symmetrical around its center. The expected output is `true` if the tree is symmetrical, `false` if it's not. We have sample input and output cases along with restrictions on the number of nodes and their values within the tree.

|60 : 00

Click the virtual machine below to start practicing