Docs
Docs
Tags
Light
Dark
Auto
Python
Leetcode submissions
2025-08-02 06:03:11 +0000 UTC
2025-08-02 06:03:11 +0000 UTC
Divisor Game
Categories:
Py
Tags:
Generated
Leetcode
Links
https://leetcode.com/submissions/detail/1720239645/
Code
class
Solution
:
def
divisorGame
(self, n: int)
->
bool:
return
n
%
2
==
0