This commit is contained in:
2025-07-18 22:14:43 +08:00
parent 882ac55f7f
commit 2a7d5ed0cc
3 changed files with 41 additions and 0 deletions

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

@@ -0,0 +1,11 @@
#ifndef INC_2163_H
#define INC_2163_H
#ifdef __cplusplus
extern "C"
{
#endif
long long minimumDifference(int *nums, int numsSize);
#ifdef __cplusplus
}
#endif
#endif