Quotes help make search much faster. Example: "Practice Makes Perfect"

Friday, December 9, 2016

Codefights isInfiniteProcess


//sample solution
function isInfiniteProcess(a, b) {
    if(a < b){
        if((b-a) % 2 == 0){
            return false;
        } else {
            return true;
        }  
    } else if(a == b){
        return false;
    } else if(a > b){
        return true;
    }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts