diff --git a/content/1-2-procedures.content.html b/content/1-2-procedures.content.html index d36c7c0..1dbc26b 100644 --- a/content/1-2-procedures.content.html +++ b/content/1-2-procedures.content.html @@ -374,7 +374,7 @@
Exercise 1.11. A function $f$ is defined by the rule that $f(n) = n$ if $n<3$ and $f(n) = f(n - 1) + 2f(n - 2) + 3f(n - 3)$ if $n > 3$. Write a procedure that computes $f$ by means of a recursive process. +
Exercise 1.11. A function $f$ is defined by the rule that $f(n) = n$ if $n<3$ and $f(n) = f(n - 1) + 2f(n - 2) + 3f(n - 3)$ if $n >= 3$. Write a procedure that computes $f$ by means of a recursive process.
Write a procedure that computes f by means of an iterative process.