All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1001_1100.s1025_divisor_game.Solution Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
package g1001_1100.s1025_divisor_game;

// #Easy #Dynamic_Programming #Math #Game_Theory #Brainteaser
// #2022_02_26_Time_0_ms_(100.00%)_Space_40.7_MB_(27.10%)

public class Solution {
    public boolean divisorGame(int n) {
        return n % 2 == 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy