This commit is contained in:
2025-07-17 20:55:46 +08:00
parent 4b5d8c5c22
commit bb4071ea04
3 changed files with 69 additions and 0 deletions

12
include/solution/326.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef INC_326_H
#define INC_326_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdbool.h>
bool isPowerOfThree(int n);
#ifdef __cplusplus
}
#endif
#endif