-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path1025.py
More file actions
12 lines (12 loc) · 558 Bytes
/
1025.py
File metadata and controls
12 lines (12 loc) · 558 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
__________________________________________________________________________________________________
sample 16 ms submission
class Solution:
def divisorGame(self, N: int) -> bool:
#dp = [False]*len(N)
return N%2==0
__________________________________________________________________________________________________
sample 12940 kb submission
class Solution:
def divisorGame(self, N: int) -> bool:
return (N % 2) == 0
__________________________________________________________________________________________________