leetcode/include/s0022_generate_parentheses.hpp

16 lines
237 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0022_GENERATE_PARENTHESES_HPP
#define S0022_GENERATE_PARENTHESES_HPP
2022-11-14 02:27:21 +00:00
#include <vector>
#include <string>
#include <cmath>
using namespace std;
class Solution {
public:
vector<string> generateParenthesis(int n);
};
#endif