#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