s0032
This commit is contained in:
15
include/s0032_longest_valid_parentheses.hpp
Normal file
15
include/s0032_longest_valid_parentheses.hpp
Normal 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
|
Reference in New Issue
Block a user