119 219 222
Some checks failed
Gitea CTest Workflow / test (push) Failing after 3m20s

This commit is contained in:
2026-03-09 19:58:49 +08:00
parent 6e2206cabe
commit 7d45cb5978
12 changed files with 408 additions and 39 deletions

14
include/solution/119.h Normal file
View File

@@ -0,0 +1,14 @@
// This file is generated by mkfile.py
// Date: 2026-03-09
#ifndef INC_119_H
#define INC_119_H
#ifdef __cplusplus
extern "C"
{
#endif
int *getRow(int rowIndex, int *returnSize);
#ifdef __cplusplus
}
#endif
#endif // INC_119_H

15
include/solution/219.h Normal file
View File

@@ -0,0 +1,15 @@
// This file is generated by mkfile.py
// Date: 2026-03-09
#ifndef INC_219_H
#define INC_219_H
#include <stdbool.h>
#ifdef __cplusplus
extern "C"
{
#endif
bool containsNearbyDuplicate(int *nums, int numsSize, int k);
#ifdef __cplusplus
}
#endif
#endif // INC_219_H

15
include/solution/222.h Normal file
View File

@@ -0,0 +1,15 @@
// This file is generated by mkfile.py
// Date: 2026-03-09
#ifndef INC_222_H
#define INC_222_H
#include "TreeNode.h"
#ifdef __cplusplus
extern "C"
{
#endif
int countNodes(struct TreeNode* root);
#ifdef __cplusplus
}
#endif
#endif // INC_222_H