Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Clear category for Max Digit by thealfest1
def max_digit(number: int) -> int:
return max(int(c) for c in str(number))
April 5, 2020
Comments: