Kaushik Narayan R 42c44952c5 day 21: 20-valid-parentheses
started neetcode roadmap, finishing easy problems first
2023-10-20 20:10:29 -07:00

9 lines
185 B
C++

#include "soln.hpp"
int main() {
string s = "({[[[]]]})";
bool answer = true;
Solution soln;
cout << "Checked parentheses correctly? " << soln.test(s, answer) << endl;
return 0;
}