leetcode/include/s0101_symmetric_tree.hpp
2023-01-30 20:44:53 +08:00

12 lines
164 B
C++

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