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