leetcode/include/s0669_trim_a_binary_search_...

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