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
}
目录
相关文章
|
28天前
|
Java Spring
allowedOrigins cannot contain the special value "*"
allowedOrigins cannot contain the special value "*"
25 0
|
传感器 监控 安全
【Matter】Matter学习笔记1(下)
【Matter】Matter学习笔记1
12106 1
|
传感器 网络协议 安全
【Matter】Matter学习笔记1(上)
【Matter】Matter学习笔记1
635 1
Choosing Teams
Choosing Teams
120 0
Choosing Teams
E: Unable to correct problems, you have held broken packages.
在使用服务器配置环境中遇到的问题,先将解决方案列下:
why SpringComponentScanServer is needed
why SpringComponentScanServer is needed
85 0
why SpringComponentScanServer is needed