This commit is contained in:
2025-07-15 19:06:57 +08:00
parent 33f3b72bfa
commit 084c5f7e11
3 changed files with 80 additions and 0 deletions

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

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