17 lines
328 B
C
17 lines
328 B
C
//
|
|
// Created by xfj12 on 2025/3/25.
|
|
//
|
|
|
|
#ifndef INC_2711_H
|
|
#define INC_2711_H
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
int **differenceOfDistinctValues(int **grid, int gridSize, int *gridColSize, int *returnSize,
|
|
int **returnColumnSizes);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // INC_2711_H
|