Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
[To String] [To Int] [Max()] [Clear and Pythonic] solution in Clear category for Max Digit by sanddro
def max_digit(value: int) -> int:
return max(int(x) for x in str(value))
Jan. 19, 2025
Comments: