Sainnhe Park
914c04c9c5
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
217 B
C++
15 lines
217 B
C++
#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
|