mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:24:07 +00:00
12 lines
193 B
C++
12 lines
193 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
int n = 4;
|
|
Solution soln;
|
|
vector<string> result = soln.generateParenthesis(n);
|
|
for (string str : result)
|
|
cout << str << "\t";
|
|
cout << endl;
|
|
return 0;
|
|
} |