16 lines
237 B
C++
16 lines
237 B
C++
#ifndef S0022_GENERATE_PARENTHESES_HPP
|
|
#define S0022_GENERATE_PARENTHESES_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <cmath>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
vector<string> generateParenthesis(int n);
|
|
};
|
|
|
|
#endif
|