Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Max Digit by list solution in Clear category for Max Digit by ksk871
def max_digit(value: int) -> int:
value_list = [int(digit) for digit in str(value)]
return max(value_list)
print("Example:")
print(max_digit(10))
# These "asserts" are used for self-checking
assert max_digit(0) == 0
assert max_digit(52) == 5
assert max_digit(634) == 6
assert max_digit(1) == 1
assert max_digit(10000) == 1
print("The mission is done! Click 'Check Solution' to earn rewards!")
Aug. 7, 2024