Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a09e58a

Browse files
committedOct 19, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f1a2ce7 commit a09e58a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎recursion/factorial.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ def factorial(n):
44
else:
55
return n * factorial(n - 1)
66

7+
78
# Example
89
print(factorial(4))

0 commit comments

Comments
 (0)
Please sign in to comment.