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