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