g0201_0300.s0204_count_primes.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0204_count_primes;
// #Medium #Top_Interview_Questions #Array #Math #Enumeration #Number_Theory
public class Solution {
public int countPrimes(int n) {
boolean[] isprime = new boolean[n];
int count = 0;
for (int i = 2; i * i <= n; i++) {
if (!isprime[i]) {
for (int j = i * 2; j < n; j += i) {
isprime[j] = true;
}
}
}
for (int i = 2; i < isprime.length; i++) {
if (!isprime[i]) {
count++;
}
}
return count;
}
}