修改目录结构,优化CMakeLists

This commit is contained in:
2024-09-16 08:12:23 +08:00
parent a1127e008f
commit 1e9de7c9c2
27 changed files with 6 additions and 26 deletions

9
src/2786.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
long long maxScore(int *nums, int numsSize, int x) { return 0; }
int main() {
int nums[] = {2, 3, 6, 1, 9, 2};
long long result = maxScore(nums, 6, 5);
printf("%lld\n", result);
return 0;
}