Skip to content

Commit 30ce63e

Browse files
committed
Fix test
1 parent 2f41327 commit 30ce63e

File tree

1 file changed

+3
-0
lines changed
  • project_euler/problem_104

1 file changed

+3
-0
lines changed

Diff for: project_euler/problem_104/sol.py

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
Given that Fk is the first Fibonacci number for which the first nine digits AND
1313
the last nine digits are 1-9 pandigital, find k.
1414
"""
15+
from sys import set_int_max_str_digits
16+
17+
set_int_max_str_digits(0)
1518

1619

1720
def check(number: int) -> bool:

0 commit comments

Comments
 (0)