Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 261 Bytes

Question_1025.md

File metadata and controls

14 lines (12 loc) · 261 Bytes

LeetCode Records - Question 1025 Divisor Game

Attempt 1:

class Solution {
    public boolean divisorGame(int n) {
        return n % 2 == 0;
    }
}
  • Runtime: 0 ms (Beats: 100.00%)
  • Memory: 40.74 MB (Beats: 5.67%)