Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for End Zeros by Mihail_Klimchen
import assert from "assert";
function endZeros(value: number): number {
let string = value.toString();
let x=string.length;
let counter=0;
while(string[--x]==="0"){
counter++;
}
return counter;
}
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!");
Jan. 31, 2021