s0020
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-04 17:22:15 +08:00
parent 91b8ac05f7
commit 955655bb0f
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0020_VALID_PARENTHESES
#define S0020_VALID_PARENTHESES
#include <stack>
#include <string>
using namespace std;
class Solution {
public:
bool isValid(string s);
};
#endif