#ifndef S0111_MINIMUM_DEPTH_OF_BINARY_TREE_HPP #define S0111_MINIMUM_DEPTH_OF_BINARY_TREE_HPP #include #include "structures.hpp" using namespace std; class S0111 { public: int minDepth(TreeNode* root); }; #endif