Skip to content

Commit 8608b40

Browse files
authored
feat(pascal): remove unnecessary call to function
1 parent 8fe75f2 commit 8608b40

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

19_pascal/solution/pascal-solution.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,5 @@ const pascal = function (counter, currentLine = [1]) {
2727
return pascal(counter - 1, joined);
2828
};
2929

30-
pascal(5)
31-
3230
// Do not edit below this line
3331
module.exports = pascal;

0 commit comments

Comments
 (0)