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

Thursday, December 15, 2016

Codefights magicalWell(a, b, n)


//sample solution
function magicalWell(a, b, n) {
    var moneyMade=0;
    for(i=0;i<n;i++){
        moneyMade = moneyMade + (a * b);
        a++;
        b++;
    }
    return moneyMade;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts