12 lines
206 B
C++
12 lines
206 B
C++
|
#ifndef S0669_TRIM_A_BINARY_SEARCH_TREE_HPP
|
||
|
#define S0669_TRIM_A_BINARY_SEARCH_TREE_HPP
|
||
|
|
||
|
#include "structures.hpp"
|
||
|
|
||
|
class S0669 {
|
||
|
public:
|
||
|
TreeNode* trimBST(TreeNode* root, int low, int high);
|
||
|
};
|
||
|
|
||
|
#endif
|