leetcode/include/s0101_symmetric_tree.hpp

12 lines
164 B
C++
Raw Permalink Normal View History

2023-01-30 12:35:13 +00:00
#ifndef S0101_SYMMETRIC_TREE_HPP
#define S0101_SYMMETRIC_TREE_HPP
#include "structures.hpp"
class S0101 {
public:
bool isSymmetric(TreeNode* root);
};
#endif