Count Prime
Given an integer n
, return the number of prime numbers that are strictly less than n
.
https://leetcode.com/problems/count-primes/
Algorithm:
Version 2:
Test:
Last updated
Given an integer n
, return the number of prime numbers that are strictly less than n
.
https://leetcode.com/problems/count-primes/
Last updated