Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Craven - Max Digit - Readable solution in Clear category for Max Digit by corwin.ravenwood
def max_digit(number: int) -> int:
# Returns the highest digit of a given int, (0-9).
return max(map(int, str(number)))
April 15, 2021