-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path1025.java
More file actions
16 lines (16 loc) · 563 Bytes
/
1025.java
File metadata and controls
16 lines (16 loc) · 563 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
__________________________________________________________________________________________________
sample 0 ms submission
class Solution {
public boolean divisorGame(int N) {
return (N%2==0);
}
}
__________________________________________________________________________________________________
sample 31560 kb submission
class Solution {
public boolean divisorGame(int N) {
if ((N & 1) == 0) return true;
return false;
}
}
__________________________________________________________________________________________________