This commit is contained in:
2025-07-18 22:23:57 +08:00
parent 2a7d5ed0cc
commit 6df3e30818
3 changed files with 79 additions and 0 deletions

11
include/solution/387.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef INC_387_H
#define INC_387_H
#ifdef __cplusplus
extern "C"
{
#endif
int firstUniqChar(char *s);
#ifdef __cplusplus
}
#endif
#endif