Bring problem_29 solution in line with project style guidelines (#2949)

This commit is contained in:
Noah H 2020-10-06 23:03:03 -04:00 committed by GitHub
parent 54401387a8
commit 91ad30c2b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ for 2 <= a <= 100 and 2 <= b <= 100?
"""
def solution(n):
def solution(n: int = 100) -> int:
"""Returns the number of distinct terms in the sequence generated by a^b
for 2 <= a <= 100 and 2 <= b <= 100.