15 lines
222 B
C++
15 lines
222 B
C++
#ifndef S0010_REGULAR_EXPRESSION_MATCHING_HPP
|
|
#define S0010_REGULAR_EXPRESSION_MATCHING_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class S0010 {
|
|
public:
|
|
bool isMatch(string s, string p);
|
|
};
|
|
|
|
#endif
|