Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Composition of Functions solution in Creative category for Max Digit by flpo
from functools import reduce
compose = lambda *funcs: lambda x: reduce(lambda y, f: f(y), reversed(funcs), x)
max_digit = compose(int, max, str)
March 5, 2020
Comments: