This commit is contained in:
2025-03-25 17:08:39 +08:00
parent aabf07d9ec
commit 59f589894b
6 changed files with 190 additions and 26 deletions

16
include/solution/2711.h Normal file
View File

@@ -0,0 +1,16 @@
//
// 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