Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
End Zeros solution in Clear category for End Zeros by Atadolfo
import assert from "assert";
var endZeros = (value: number): number => (/0+$/.exec(value.toString())||[""])[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!");
April 23, 2020
Comments: