First solution in Clear category for Max Digit by Cyrus490
def max_digit(number: int) -> int: return max([int(i) for i in str(number)])
Oct. 23, 2020