Files
leetcode/include/solution/2410.h
2025-07-13 20:15:09 +08:00

11 lines
208 B
C

#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