leetcode/include/s0010_regular_expression_matching.hpp
2022-11-21 21:15:56 +08:00

15 lines
225 B
C++

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