Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 801 Bytes

s0204_count_primes.md

File metadata and controls

31 lines (21 loc) · 801 Bytes

统计所有小于非负整数 n 的质数的数量。

 

示例 1:

输入:n = 10
输出:4
解释:小于 10 的质数一共有 4 个, 它们是 2, 3, 5, 7 。

示例 2:

输入:n = 0
输出:0

示例 3:

输入:n = 1
输出:0

 

提示:

  • 0 <= n <= 5 * 106
Related Topics
  • 数组
  • 数学
  • 枚举
  • 数论

  • 👍 739
  • 👎 0