-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate-parentheses.cpp
More file actions
35 lines (34 loc) · 906 Bytes
/
Copy pathvalidate-parentheses.cpp
File metadata and controls
35 lines (34 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//https://neetcode.io/problems/validate-parentheses
class Solution {
public:
bool isValid(string s) {
stack<char> stck;
for(auto ch: s){
if(ch == '[' || ch == '(' || ch == '{'){
stck.push(ch);
}else if(ch == ']'){
if(!stck.empty() && stck.top() == '['){
stck.pop();
}else{
return false;
}
}else if(ch == '}'){
if(!stck.empty() && stck.top() == '{'){
stck.pop();
}else{
return false;
}
}else{
if(!stck.empty() && stck.top() == '('){
stck.pop();
}else{
return false;
}
}
}
return stck.empty();
}
};
// extra:
// s="["
// s="}"