leetcode/include/s0022_generate_parentheses.hpp
2022-11-14 10:27:21 +08:00

16 lines
229 B
C++

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