2020-10-08 13:37:09 +00:00
|
|
|
"""
|
|
|
|
Project Euler Problem 56: https://projecteuler.net/problem=56
|
|
|
|
|
|
|
|
A googol (10^100) is a massive number: one followed by one-hundred zeros;
|
|
|
|
100^100 is almost unimaginably large: one followed by two-hundred zeros.
|
|
|
|
Despite their size, the sum of the digits in each number is only 1.
|
|
|
|
|
|
|
|
Considering natural numbers of the form, ab, where a, b < 100,
|
|
|
|
what is the maximum digital sum?
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def solution(a: int = 100, b: int = 100) -> int:
|
2019-08-13 17:16:11 +00:00
|
|
|
"""
|
2020-09-10 08:31:26 +00:00
|
|
|
Considering natural numbers of the form, a**b, where a, b < 100,
|
|
|
|
what is the maximum digital sum?
|
|
|
|
:param a:
|
|
|
|
:param b:
|
|
|
|
:return:
|
2020-10-08 13:37:09 +00:00
|
|
|
>>> solution(10,10)
|
2020-09-10 08:31:26 +00:00
|
|
|
45
|
2019-08-13 17:16:11 +00:00
|
|
|
|
2020-10-08 13:37:09 +00:00
|
|
|
>>> solution(100,100)
|
2020-09-10 08:31:26 +00:00
|
|
|
972
|
2019-08-13 17:16:11 +00:00
|
|
|
|
2020-10-08 13:37:09 +00:00
|
|
|
>>> solution(100,200)
|
2020-09-10 08:31:26 +00:00
|
|
|
1872
|
2019-08-13 17:16:11 +00:00
|
|
|
"""
|
|
|
|
|
2020-06-16 08:09:19 +00:00
|
|
|
# RETURN the MAXIMUM from the list of SUMs of the list of INT converted from STR of
|
|
|
|
# BASE raised to the POWER
|
2019-10-05 05:14:13 +00:00
|
|
|
return max(
|
2022-01-30 19:29:54 +00:00
|
|
|
sum(int(x) for x in str(base**power))
|
2021-09-07 11:37:03 +00:00
|
|
|
for base in range(a)
|
|
|
|
for power in range(b)
|
2019-10-05 05:14:13 +00:00
|
|
|
)
|
2019-08-13 17:16:11 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
|
|
|
# Tests
|
2019-08-13 17:16:11 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
import doctest
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2019-08-13 17:16:11 +00:00
|
|
|
doctest.testmod()
|