This commit is contained in:
2022-11-14 10:27:21 +08:00
parent 2031712234
commit 1829bf176e
3 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#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