First solution in Clear category for Max Digit by juestr
def max_digit(number: int) -> int: return max(map(int, str(number)))
June 20, 2023