This commit is contained in:
2025-07-13 20:15:09 +08:00
parent ed2072aef8
commit ec59538a98
3 changed files with 14230 additions and 0 deletions

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

@@ -0,0 +1,11 @@
#ifndef INC_2410_H
#define INC_2410_H
#ifdef __cplusplus
extern "C"
{
#endif
int matchPlayersAndTrainers(int *players, int playersSize, int *trainers, int trainersSize);
#ifdef __cplusplus
}
#endif
#endif