s0513
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-01-31 12:28:03 +08:00
parent 63f60259ee
commit c442846324
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0513_FIND_BOTTOM_LEFT_TREE_VALUE_HPP
#define S0513_FIND_BOTTOM_LEFT_TREE_VALUE_HPP
#include <queue>
#include "structures.hpp"
using namespace std;
class S0513 {
public:
int findBottomLeftValue(TreeNode* root);
};
#endif