mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:24:07 +00:00
10 lines
195 B
C++
10 lines
195 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
string s = "((**)((()))";
|
|
bool answer = true;
|
|
Solution soln;
|
|
cout << "Validated parenthesis string correctly? " << soln.test(s, answer) << endl;
|
|
return 0;
|
|
} |