#ifndef S0032_LONGEST_VALID_PARENTHESES_HPP #define S0032_LONGEST_VALID_PARENTHESES_HPP #include #include #include using namespace std; class S0032 { public: int longestValidParentheses(string s); }; #endif