This commit is contained in:
2025-07-13 14:06:19 +08:00
parent 7325a22989
commit ed2072aef8
3 changed files with 147 additions and 0 deletions

12
include/solution/290.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef INC_290_H
#define INC_290_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdbool.h>
bool wordPattern(char *pattern, char *s);
#ifdef __cplusplus
}
#endif
#endif