Skip to content

Commit b405a66

Browse files
authored
Bring problem_29 solution in line with project style guidelines (TheAlgorithms#2949)
1 parent 8216eb2 commit b405a66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: project_euler/problem_29/solution.py renamed to project_euler/problem_29/sol1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"""
1717

1818

19-
def solution(n):
19+
def solution(n: int = 100) -> int:
2020
"""Returns the number of distinct terms in the sequence generated by a^b
2121
for 2 <= a <= 100 and 2 <= b <= 100.
2222

0 commit comments

Comments
 (0)