当前位置: 首页 > 工具软件 > Sieve > 使用案例 >

Python:实现 sieve of Eratosthenes埃拉托色尼筛法算法(附完整源码)

呼延鹏云
2023-12-01


from __future__ import annotations

import math


def prime_sieve(num: int) -> list[int]:
   

    if num <= 0:
        
 类似资料: