Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
to string solution in Clear category for Max Digit by pavel.borisofff
import assert from "assert";
function maxDigit(value: number): number {
return Number([...String(value)].sort().slice(-1));
}
console.log('Example:');
console.log(maxDigit(0));
// These "asserts" are used for self-checking
assert.equal(maxDigit(0), 0);
assert.equal(maxDigit(52), 5);
assert.equal(maxDigit(634), 6);
assert.equal(maxDigit(1), 1);
assert.equal(maxDigit(10000), 1);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
Feb. 20, 2021
Comments: