Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner: max(map(int, string number)) solution in Clear category for Max Digit by Phil15
max_digit = lambda number: max(map(int, str(number)))
March 2, 2020