19 lines
324 B
C
19 lines
324 B
C
//
|
|
// Created by xfj12 on 2025/3/25.
|
|
//
|
|
|
|
#ifndef INC_2974_H
|
|
#define INC_2974_H
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
/**
|
|
* Note: The returned array must be malloced, assume caller calls free().
|
|
*/
|
|
int *numberGame(int *nums, int numsSize, int *returnSize);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // INC_2974_H
|