#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