leetcode/include/s0513_find_bottom_left_tree_value.hpp
Sainnhe Park c442846324
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0513
2023-01-31 12:28:03 +08:00

16 lines
237 B
C++

#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