#ifndef S0022_GENERATE_PARENTHESES_HPP #define S0022_GENERATE_PARENTHESES_HPP #include #include #include using namespace std; class Solution { public: vector generateParenthesis(int n); }; #endif