1. Intro to Recursion #

Created Saturday 28 December 2019

(Don’t say that a function calls itself, it actually calls a smaller version of itself). e.g. factorial: i.e f(n) = n * f(n-1) , f(0) = 1.

**Note: **We don’t have to make manually manage activation records, as this is tedious. We’ll see better representation in the next lecture.