Skip to content

Commit af614c1

Browse files
committed
Update KMP.c
1 parent 6b407ab commit af614c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

String-Matching/KMP.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include<stdio.h>
22
#include<string.h>
33

4-
char t[24],p[15];
5-
int pi[15];
4+
char t[150],p[150];
5+
int pi[150];
66
void prefix(int m)
77
{
88
int q,k=0;

0 commit comments

Comments
 (0)