diff --git a/08_calculator/solution/calculator-solution.js b/08_calculator/solution/calculator-solution.js index b195387..4848d86 100644 --- a/08_calculator/solution/calculator-solution.js +++ b/08_calculator/solution/calculator-solution.js @@ -27,15 +27,6 @@ const factorial = function (n) { return product; }; -// This is another implementation of Factorial that uses recursion -// THANKS to @ThirtyThreeB! -const recursiveFactorial = function (n) { - if (n === 0) { - return 1; - } - return n * recursiveFactorial(n - 1); -}; - module.exports = { add, subtract,