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 b3c1ad1 commit 7da9eb2Copy full SHA for 7da9eb2
examples/factoradic.py
@@ -55,6 +55,7 @@ def test() -> None:
55
(5039, "654321"),
56
(5040, "1000000"),
57
(1_000_001, "266251221"),
58
+ (36287999, "9987654321"),
59
)
60
61
for i, f in test_cases:
examples/test/__main__.py
@@ -3,7 +3,7 @@
3
from __future__ import annotations
4
5
from pathlib import Path
6
-from subprocess import run, PIPE
+from subprocess import PIPE, run
7
8
from ..factoradic import test
9
from ..print_primes import test_prime_stream
0 commit comments