This commit is contained in:
2025-07-12 21:47:01 +08:00
parent 58a56e3926
commit 98b0294f80
3 changed files with 51 additions and 0 deletions

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

@@ -0,0 +1,11 @@
#ifndef INC_1900_H
#define INC_1900_H
#ifdef __cplusplus
extern "C"
{
#endif
int *earliestAndLatest(int n, int firstPlayer, int secondPlayer, int *returnSize);
#ifdef __cplusplus
}
#endif
#endif