leetcode/include/s0010_regular_expression_ma...

15 lines
222 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0010_REGULAR_EXPRESSION_MATCHING_HPP
#define S0010_REGULAR_EXPRESSION_MATCHING_HPP
2022-11-03 06:57:32 +00:00
#include <string>
#include <vector>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0010 {
2022-11-03 06:57:32 +00:00
public:
bool isMatch(string s, string p);
};
#endif