Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README.md
Agrega explicación sobre la condición de salida en función factorial para evitar recursión infinita
  • Loading branch information
Elreno23 authored Aug 20, 2025
commit e40603bd670e88d727643583d5a3f4242b8a36b5
1 change: 1 addition & 0 deletions exercises/020-factorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ factorial(8)
## 💡 Hint:

+ If you don't know what a factorial is, you can check it out on this link: https://www.cuemath.com/numbers/factorial/
+ Every recursive function must have a base case to prevent infinite recursion.