Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
End Zeros solution in Uncategorized category for End Zeros by vvm70
import assert from "assert";
function endZeros(value: number): number {
return value.toString().length - value.toString().replace(/0*$/, "").length;
}
console.log('Example:');
console.log(endZeros(0));
// These "asserts" are used for self-checking
assert.equal(endZeros(0), 1);
assert.equal(endZeros(1), 0);
assert.equal(endZeros(10), 1);
assert.equal(endZeros(101), 0);
assert.equal(endZeros(245), 0);
assert.equal(endZeros(100100), 2);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
June 2, 2020
Comments: