We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde8bd7 commit 73db391Copy full SHA for 73db391
Dynamic Programming/1025_Divisor_Game.java
@@ -0,0 +1,5 @@
1
+class Solution {
2
+ public boolean divisorGame(int N) {
3
+ return N % 2 == 0;
4
+ }
5
+}
0 commit comments