-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20-valid-parentheses.cpp
More file actions
39 lines (38 loc) · 1.05 KB
/
20-valid-parentheses.cpp
File metadata and controls
39 lines (38 loc) · 1.05 KB
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
36
37
38
39
class Solution {
public:
bool isValid(string s) {
stack<char> chars;
for (int i = 0; i < s.length(); i++) {
if (s[i] == '(' || s[i] == '{' || s[i] == '[') {
chars.push(s[i]);
};
if (s[i] == ')') {
if (chars.empty())
return false;
if (chars.top() == '(') {
chars.pop();
} else
return false;
};
if (s[i] == '}') {
if (chars.empty())
return false;
if (chars.top() == '{') {
chars.pop();
} else
return false;
};
if (s[i] == ']') {
if (chars.empty())
return false;
if (chars.top() == '[') {
chars.pop();
} else
return false;
};
}
if (chars.size() != 0)
return false;
return true;
}
};