【题目描述】
给定一个只包括 '('
,')'
,'{'
,'}'
,'['
,']'
s
,判断字符串是否有效
有效字符串需满足:
- 左括号必须用相同类型的右括号闭合。
- 左括号必须以正确的顺序闭合。
- 每个右括号都有一个对应的相同类型的左括号。
【示例】
【代码】
class Solution {
public boolean isValid(String s) {
int length = s.length() / 2;
for (int i = 0; i < length; i++) {
s = s.replace("()", "").replace("{}", "").replace("[]", "");
}
return s.length() == 0;
}
}
https://leetcode.cn/problems/valid-parentheses/?favorite=2cktkvj