We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 489fd98 commit 3d778d5Copy full SHA for 3d778d5
maths/sieve_of_atkin.py
@@ -5,7 +5,7 @@ def sieve_of_atkin(limit: int) -> List[int]:
5
"""
6
Compute all prime numbers up to the given limit using the Sieve of Atkin.
7
8
- Parameters
+ Parameterss
9
----------
10
limit : int
11
Upper bound of primes to generate (inclusive).
maths/test_sieve_of_atkin.py
@@ -1,4 +1,4 @@
1
-# tests/test_sieve_of_atkin.py
+# maths/test_sieve_of_atkin.py
2
import pytest
3
from maths.sieve_of_atkin import sieve_of_atkin
4
0 commit comments