Skip to content

Commit dee63bc

Browse files
committed
Regular expression match
1 parent f4e45c6 commit dee63bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dynamic Programming/Regular Expression Match.txt renamed to Dynamic Programming/Regex Matching.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
#include<bits/stdc++.h>
77
using namespace std;
88

9+
string s1,s2;
10+
911

1012
int dp[10000][200];// to store value of each state
11-
string s1,s2;
1213

1314
bool rec(int i,int j)
1415
{

0 commit comments

Comments
 (0)