leetcode/include/s0226_invert_binary_tree.hpp

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

2023-01-30 12:17:47 +00:00
#ifndef S0226_INVERT_BINARY_TREE_HPP
#define S0226_INVERT_BINARY_TREE_HPP
#include "structures.hpp"
class S0226 {
public:
TreeNode* invertTree(TreeNode* root);
};
#endif