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

Monday, May 1, 2017

Codefights Sample Solution makeArrayConsecutive2(statues)


function makeArrayConsecutive2(statues) {
    ideal=0;
    real=statues.length;
    sorted = statues.sort(function(a, b){return a-b});
    for(i=sorted[0];i<=sorted[sorted.length-1];i++){
        ideal++;
    }
    statuesNeeded = ideal - real;
    return statuesNeeded;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts