2019-08-13 17:16:11 +00:00
|
|
|
def maximum_digital_sum(a: int, b: int) -> int:
|
|
|
|
"""
|
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:
|
|
|
|
>>> maximum_digital_sum(10,10)
|
|
|
|
45
|
2019-08-13 17:16:11 +00:00
|
|
|
|
2020-09-10 08:31:26 +00:00
|
|
|
>>> maximum_digital_sum(100,100)
|
|
|
|
972
|
2019-08-13 17:16:11 +00:00
|
|
|
|
2020-09-10 08:31:26 +00:00
|
|
|
>>> maximum_digital_sum(100,200)
|
|
|
|
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(
|
|
|
|
[
|
|
|
|
sum([int(x) for x in str(base ** power)])
|
|
|
|
for base in range(a)
|
|
|
|
for power in range(b)
|
|
|
|
]
|
|
|
|
)
|
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()
|