mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-19 19:03:02 +08:00
Optimized recursive_bubble_sort (#2410)
* optimized recursive_bubble_sort * Fixed doctest error due whitespace * reduce loop times for optimization * fixup! Format Python code with psf/black push Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -1,18 +1,18 @@
|
||||
def maximum_digital_sum(a: int, b: int) -> int:
|
||||
"""
|
||||
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
|
||||
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
|
||||
|
||||
>>> maximum_digital_sum(100,100)
|
||||
972
|
||||
>>> maximum_digital_sum(100,100)
|
||||
972
|
||||
|
||||
>>> maximum_digital_sum(100,200)
|
||||
1872
|
||||
>>> maximum_digital_sum(100,200)
|
||||
1872
|
||||
"""
|
||||
|
||||
# RETURN the MAXIMUM from the list of SUMs of the list of INT converted from STR of
|
||||
|
Reference in New Issue
Block a user