From 5c142ed8197747dff2a63113adf8d8d5ad58c649 Mon Sep 17 00:00:00 2001 From: Louis Oliphant <ltoliphant@wisc.edu> Date: Fri, 25 Oct 2024 06:21:14 -0500 Subject: [PATCH] updated lec 22 recursion --- .../22_Recursion/Lec_22_Recursion.ipynb | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/f24/Louis_Lecture_Notes/22_Recursion/Lec_22_Recursion.ipynb b/f24/Louis_Lecture_Notes/22_Recursion/Lec_22_Recursion.ipynb index 203ea31..9bb054f 100644 --- a/f24/Louis_Lecture_Notes/22_Recursion/Lec_22_Recursion.ipynb +++ b/f24/Louis_Lecture_Notes/22_Recursion/Lec_22_Recursion.ipynb @@ -150,7 +150,7 @@ "## What is Recursion?\n", "Recursion is defined as the process of defining something in terms of itself.\n", "\n", - "This is commonly done when writting a function. A recursive function is one that calls itself. This can be very dangerous because you can get infinite recursion:\n", + "This is commonly done when writting a function. **A recursive function is one that calls itself.** This can be very dangerous because you can get infinite recursion:\n", "\n", "```python\n", "def func():\n", @@ -319,15 +319,6 @@ "### Other Recursive Problems" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Go back and complete Warmup 2.C" - ] - }, { "cell_type": "code", "execution_count": null, -- GitLab