20 Valid Parentheses
1. Question
2. Implementation
class Solution {
public boolean isValid(String s) {
Stack<Character> stack = new Stack<>();
for (char c : s.toCharArray()) {
if (c == '(') {
stack.push(')');
}
else if (c == '[') {
stack.push(']');
}
else if (c == '{') {
stack.push('}');
}
else if (stack.isEmpty() || (stack.pop() != c)) {
return false;
}
}
return stack.isEmpty();
}
}3. Time & Space Complexity
Last updated