#ifndef S0257_BINARY_TREE_PATHS_HPP #define S0257_BINARY_TREE_PATHS_HPP #include #include #include #include "structures.hpp" using namespace std; class S0257 { public: vector binaryTreePaths(TreeNode* root); }; #endif