Skip to content

Commit 73db391

Browse files
Sean PrashadSean Prashad
authored andcommitted
Add 1025_Divisor_Game.java
1 parent cde8bd7 commit 73db391

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Solution {
2+
public boolean divisorGame(int N) {
3+
return N % 2 == 0;
4+
}
5+
}

0 commit comments

Comments
 (0)