This commit is contained in:
2025-07-18 22:37:04 +08:00
parent 6df3e30818
commit f54c320ebf
3 changed files with 88 additions and 0 deletions

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

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