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

g1901_2000.s1952_three_divisors.Solution Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
package g1901_2000.s1952_three_divisors;

// #Easy #Math #2022_05_18_Time_1_ms_(84.91%)_Space_39.4_MB_(79.95%)

public class Solution {
    public boolean isThree(int n) {
        int divisors = 0;
        for (int i = 1; i <= n; i++) {
            if (n % i == 0) {
                divisors++;
            }
        }
        return divisors == 3;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy