1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/problems/valid-parentheses.cpp
Matej Focko 10b6b3dd69
problems(cpp): add “20. Valid Parentheses”
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-04-10 20:03:58 +02:00

32 lines
670 B
C++

#include <string>
#include <vector>
class Solution {
public:
bool isValid(const std::string& s)
{
std::vector<char> st;
for (auto c : s) {
switch (c) {
case '(':
st.push_back(')');
break;
case '{':
st.push_back('}');
break;
case '[':
st.push_back(']');
break;
default:
if (st.empty() || st.back() != c) {
return false;
}
st.pop_back();
break;
}
}
return st.empty();
}
};