12 lines
176 B
C++
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
|