Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
set solution in Clear category for Max Digit by dizemis
def max_digit(number: int) -> int:
# 1234321 -> {1, 2, 3, 4}
return max([int(i) for i in set(str(number))])
if __name__ == '__main__':
print("Example:")
print(max_digit(0))
# These "asserts" are used for self-checking and not for an auto-testing
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("Coding complete? Click 'Check' to earn cool rewards!")
July 17, 2021