Don't give me five!

简介: Don't give me five!
In this kata you get the start number and the end number of a region and should return the count of all numbers except numbers with a 5 in it. The start and the end number are both inclusive!

Examples:

1,9 -> 1,2,3,4,6,7,8,9 -> Result 8
4,17 -> 4,6,7,8,9,10,11,12,13,14,16,17 -> Result 12
The result may contain fives. ;-)
The start number will always be smaller than the end number. Both numbers can be also negative!

代码:

function dontGiveMeFive(start, end) {
    var r=[],i=start;
    while(i<end+1){
        var str= i.toString();
        if(str.indexOf(5)==-1){
            r.push(i++)
        }else{
            i++
        }
    }
    return r.length
}
目录
相关文章
|
Shell
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
13242 0
Solving environment: failed with initial frozen solve. Retrying with flexible solve的解决方法
E: Unable to correct problems, you have held broken packages.
在使用服务器配置环境中遇到的问题,先将解决方案列下:
|
关系型数据库 MySQL
|
JSON 数据格式