This commit is contained in:
2025-09-29 10:56:06 +08:00
parent f6e998beff
commit af0fe8a168
3 changed files with 103 additions and 0 deletions

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

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