mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:34:07 +00:00
8 lines
206 B
C++
8 lines
206 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
void recurseParenthesis(vector<string>& result, string str, int left, int right);
|
|
vector<string> generateParenthesis(int n);
|
|
}; |