Skip to content

Commit 7da9eb2

Browse files
committed
new test case
1 parent b3c1ad1 commit 7da9eb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/factoradic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def test() -> None:
5555
(5039, "654321"),
5656
(5040, "1000000"),
5757
(1_000_001, "266251221"),
58+
(36287999, "9987654321"),
5859
)
5960

6061
for i, f in test_cases:

examples/test/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
from pathlib import Path
6-
from subprocess import run, PIPE
6+
from subprocess import PIPE, run
77

88
from ..factoradic import test
99
from ..print_primes import test_prime_stream

0 commit comments

Comments
 (0)