First solution in Clear category for Max Digit by erewhon
max_digit = lambda number: max([int(i) for i in str(number)])
July 7, 2020