Simple - another solution in Clear category for Max Digit by thealfest1
def max_digit(number: int) -> int: return int(max(str(number)))
March 11, 2020