max...map... solution in Clear category for Max Digit by maksimus
max_digit = lambda n: max(map(int, list(str(n))))
May 19, 2020
Comments: