Files
leetcode/src/1025.c
2025-12-05 21:32:57 +08:00

7 lines
136 B
C

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