Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
digits from string solution in Speedy category for Max Digit by PythonWithPI
def max_digit(number: int) -> int:
return max(map(int, str(number)))
March 5, 2020
Comments: