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 8fe75f2 commit 8608b40Copy full SHA for 8608b40
19_pascal/solution/pascal-solution.js
@@ -27,7 +27,5 @@ const pascal = function (counter, currentLine = [1]) {
27
return pascal(counter - 1, joined);
28
};
29
30
-pascal(5)
31
-
32
// Do not edit below this line
33
module.exports = pascal;
0 commit comments