leetcode/include/s0020_valid_parentheses.hpp
2022-11-21 21:15:56 +08:00

15 lines
194 B
C++

#ifndef S0020_VALID_PARENTHESES_HPP
#define S0020_VALID_PARENTHESES_HPP
#include <stack>
#include <string>
using namespace std;
class Solution {
public:
bool isValid(string s);
};
#endif