This commit is contained in:
2023-02-01 11:52:11 +08:00
parent a0517aa4d0
commit 968e8f3adc
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#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