Skip to content

Commit f0aa91c

Browse files
committed
Fix test
1 parent 7759138 commit f0aa91c

File tree

1 file changed

+2
-2
lines changed
  • project_euler/problem_104

1 file changed

+2
-2
lines changed

Diff for: project_euler/problem_104/sol.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +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
15+
import sys
1616

17-
set_int_max_str_digits(0)
17+
sys.set_int_max_str_digits(0)
1818

1919

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

0 commit comments

Comments
 (0)