Update cv1/program.c

This commit is contained in:
Yurii Yakovenko 2024-10-01 19:14:47 +00:00
parent 058d465404
commit bacc2869ef

View File

@ -25,6 +25,7 @@ bool check(char* s2, char *pz)
s[i]=shifer[s[i]-'0'];
}
}
s[strlen(s2)]=0;
bool rez=strstr(s, pz)!=NULL;
free(s);
return rez;
@ -71,3 +72,4 @@ int main()
return 0;
}