leetcode/include/s0226_invert_binary_tree.hpp

12 lines
176 B
C++

#ifndef S0226_INVERT_BINARY_TREE_HPP
#define S0226_INVERT_BINARY_TREE_HPP
#include "structures.hpp"
class S0226 {
public:
TreeNode* invertTree(TreeNode* root);
};
#endif