#ifndef S0010_REGULAR_EXPRESSION_MATCHING #define S0010_REGULAR_EXPRESSION_MATCHING #include #include using namespace std; class Solution { public: bool isMatch(string s, string p); }; #endif