This commit is contained in:
2022-11-21 16:51:23 +08:00
parent ba6f75b394
commit 0a13bff07b
3 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0032_LONGEST_VALID_PARENTHESES
#define S0032_LONGEST_VALID_PARENTHESES
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
int longestValidParentheses(string s);
};
#endif