#ifndef S0101_SYMMETRIC_TREE_HPP #define S0101_SYMMETRIC_TREE_HPP #include "structures.hpp" class S0101 { public: bool isSymmetric(TreeNode* root); }; #endif