Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Max Digit by nicolas.tscherter
function maxDigit(value) {
return Math.max(...value.toString().split("").map(Number))
}
June 16, 2020
Comments: