Max Digit solution in Clear category for Max Digit by TKuzma
def max_digit(number): number = list(str(number)) return int(max(number))
July 22, 2021