We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a698fa9 commit ff9be86Copy full SHA for ff9be86
project_euler/problem_99/sol1.py
@@ -17,9 +17,9 @@
17
from math import log10
18
19
20
-def find_largest(data_file: str = "base_exp.txt") -> int:
+def solution(data_file: str = "base_exp.txt") -> int:
21
"""
22
- >>> find_largest()
+ >>> solution()
23
709
24
25
largest = [0, 0]
@@ -31,4 +31,4 @@ def find_largest(data_file: str = "base_exp.txt") -> int:
31
32
33
if __name__ == "__main__":
34
- print(find_largest())
+ print(solution())
0 commit comments