LeetCode 0204 - Count Primes
Contents
Count Primes
Desicription
Count the number of prime numbers less than a non-negative number, n.
Example:
1 | Input: 10 |
Solution
1 | class Solution { |
Count the number of prime numbers less than a non-negative number, n.
Example:
1 | Input: 10 |
1 | class Solution { |