First solution in Clear category for Max Digit by ssk8
def max_digit(number: int) -> int: return int(max(str(number)))
April 5, 2020
Comments: