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

This commit is contained in:
2022-11-03 14:57:32 +08:00
parent b39d62e895
commit 914c04c9c5
3 changed files with 75 additions and 0 deletions

View File

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