This commit is contained in:
2025-12-05 21:32:57 +08:00
parent 727096b8e6
commit e580f911cb
3 changed files with 68 additions and 0 deletions

7
src/1025.c Normal file
View File

@@ -0,0 +1,7 @@
// This file is generated by mkfile.py
// Date: 2025-12-05
#include <solution/1025.h>
bool divisorGame(int n)
{
return n % 2 == 0;
}