LeetCode 20 Valid Parentheses

题目

class Solution {
public:
    char a[10005];
    int pos=0;;
    bool isValid(string s) {
        
        if(s.length()==0)
            return true;
        for(int i=0;i

你可能感兴趣的:(LeetCode 20 Valid Parentheses)