Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in 3rd party category for End Zeros by kxs749149
import assert from "assert";
function endZeros(value: number): number {
// your code here
let arr = String(value).split(/[^0]/);
return arr[arr.length - 1].length;
}
console.log('Example:');
console.log(endZeros(100100));
// 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. 30, 2021
Comments: