Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Max Digit. First solution in Uncategorized category for Max Digit by vvm70
import assert from "assert";
function maxDigit(value) {
return parseInt([...value.toString()].sort((x, y) => (y - x))[0]);
}
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!");
June 2, 2020
Comments: