1-liner max solution in Clear category for Max Digit by Stensen
max_digit = lambda n: max([int(i) for i in str(n)])
Sept. 20, 2020
Comments: