Created
February 9, 2021 00:44
-
-
Save Nicknyr/def74c2e1634ed807281f9f3ff5b95b0 to your computer and use it in GitHub Desktop.
CodeSignal: Magic Well
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
You are standing at a magical well. It has two positive integers written on it: a and b. Each time you cast a magic marble into the well, it gives you a * b dollars and then both a and b increase by 1. You have n magic marbles. How much money will you make? | |
Example | |
For a = 1, b = 2, and n = 2, the output should be | |
magicalWell(a, b, n) = 8. | |
You will cast your first marble and get $2, after which the numbers will become 2 and 3. When you cast your second marble, the well will give you $6. Overall, you'll make $8. So, the output is 8. | |
*/ | |
function magicalWell(a, b, n) { | |
let total = 0; | |
for(let i = 0; i < n; i++) { | |
total = a * b + total; | |
a++; | |
b++; | |
} | |
return total; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment