We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882d418 commit 052637dCopy full SHA for 052637d
13_factorial/solution/factorial-solution.js
@@ -4,5 +4,4 @@ const factorial = function(n) {
4
return n * factorial(n - 1);
5
};
6
7
-// Do not edit below this line
8
module.exports = factorial;
0 commit comments