-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution.java
38 lines (32 loc) · 1.13 KB
/
Solution.java
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
package leetcode_20_valid_parentheses;
import java.util.LinkedList;
public class Solution {
public static boolean isValid(String s) {
LinkedList<Character> charList = new LinkedList<Character>();
for(int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if(c == '(' || c == '[' || c == '{') {
charList.add(c);
} else if(c == ')') {
if(charList.isEmpty() || charList.getLast() != '(') {
return false;
} else {
charList.removeLast();
}
} else if(c == ']') {
if(charList.isEmpty() || charList.getLast() != '[') {
return false;
} else {
charList.removeLast();
}
} else if(c == '}') {
if(charList.isEmpty() || charList.getLast() != '{') {
return false;
} else {
charList.removeLast();
}
}
}
return charList.isEmpty();
}
}