-
-
Save simon0191/f7f241f1d44db3d46127 to your computer and use it in GitHub Desktop.
This file contains 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
function main(n) { | |
var sol = 1; | |
while(n > 1) sol*=(n--); | |
return sol; | |
} | |
/* | |
console.log(main(1)); | |
console.log(main(2)); | |
console.log(main(10)); | |
console.log(main(8)); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment