Count Primes

Problem

Given an integer n, return the number of prime numbers that are strictly less than n.

Example 1:

Input: n = 10
Output: 4
Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.

Example 2:

Input: n = 0
Output: 0

Example 3:

Input: n = 1
Output: 0

Constraints:

  • 0 <= n <= 5 * 106

Solution

I will walk out of any interview that wants me to implement or derive the Sieve of Eratosthenes.

Naive solution:

class Solution {
    public int countPrimes(int n) {
        var c = 0;
        var l = new ArrayList<Integer>();
        for (int i = 2; i < n; i++) {
            if (isPrime(i, l)) {
                c += 1;
                l.add(i);
            }
        }
        return c;
    }

    public boolean isPrime(int n, List<Integer> l) {
        var max = (int) Math.sqrt(n);

        for (var k : l) {
            if (k > max) {
                break;
            }
            if (n % k == 0) {
                return false;
            }
        }
        return true;
    }
}

Recent posts from blogs that I like

Claude Fable 5.1 made me a really nice animated pelican

via Simon Willison

FBI Probes Service Selling 153M+ Drivers Licenses

A new identity theft service launched on the dark web this week is selling digital scans of more than 153 million drivers licenses from people in the United States and Canada. Based on interviews with individuals whose licenses are available for purchase on this service, it appears to be siphoning i...

via Krebs on Security

Portraits of trees: Sisley’s poplars of Moret

Influenced by Corot, late in his career he painted several views of an avenue of poplars in the village of Moret-cur-Loing, forming an unusual series shown here.

via The Eclectic Light Company