Skip to content

Commit 3d778d5

Browse files
test(maths): add pytest maths for Sieve of Atkin
1 parent 489fd98 commit 3d778d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

maths/sieve_of_atkin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def sieve_of_atkin(limit: int) -> List[int]:
55
"""
66
Compute all prime numbers up to the given limit using the Sieve of Atkin.
77
8-
Parameters
8+
Parameterss
99
----------
1010
limit : int
1111
Upper bound of primes to generate (inclusive).

maths/test_sieve_of_atkin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tests/test_sieve_of_atkin.py
1+
# maths/test_sieve_of_atkin.py
22
import pytest
33
from maths.sieve_of_atkin import sieve_of_atkin
44

0 commit comments

Comments
 (0)