This commit is contained in:
2023-01-30 20:35:13 +08:00
parent eb1bbfb9c6
commit 2ba7e17b1c
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef S0101_SYMMETRIC_TREE_HPP
#define S0101_SYMMETRIC_TREE_HPP
#include "structures.hpp"
class S0101 {
public:
bool isSymmetric(TreeNode* root);
};
#endif