This commit is contained in:
2025-03-25 18:08:26 +08:00
parent e0f249d1d9
commit 79b6fbe7e3
5 changed files with 63 additions and 1 deletions

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

@@ -0,0 +1,16 @@
//
// Created by xfj12 on 2025/3/25.
//
#ifndef INC_367_H
#define INC_367_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdbool.h>
bool isPerfectSquare(int num);
#ifdef __cplusplus
}
#endif
#endif // INC_367_H