LeetCode Records - Question 1025 Divisor Game
class Solution {
public boolean divisorGame(int n) {
return n % 2 == 0;
}
}
- Runtime: 0 ms (Beats: 100.00%)
- Memory: 40.74 MB (Beats: 5.67%)
class Solution {
public boolean divisorGame(int n) {
return n % 2 == 0;
}
}