upd readmes, rename exercises.

This commit is contained in:
2024-02-06 22:04:37 +00:00
parent 13a0852cb9
commit 1d22356ce5
5 changed files with 14 additions and 7 deletions

10
chapter3/README.md Normal file
View File

@@ -0,0 +1,10 @@
# Recursion
Recursive functions must have both:
- one or more base cases
- a recursive case
The base cases are required to ensure the recursion stops when meeting a condition
The recursive case adds functions onto the call stack and completes each one top down.