Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasero committed Oct 17, 2024
1 parent ad1cf64 commit cfd05b3
Show file tree
Hide file tree
Showing 17 changed files with 10,285 additions and 4 deletions.
937 changes: 937 additions & 0 deletions 06_numpy_intro.html

Large diffs are not rendered by default.

517 changes: 517 additions & 0 deletions _sources/06_numpy_intro.ipynb

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion _sources/chapters/module-3/lab-recursion.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,20 @@
"f(2,4)"
]
},
{
"cell_type": "markdown",
"id": "3e36d1e5-de1b-4aab-93fc-f4187f137554",
"metadata": {
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"<div class=\"alert alert-info\">\n",
"We can call functions from within another functions!\n",
"</div>"
]
},
{
"cell_type": "markdown",
"id": "170aa950-bd32-4fca-9080-3e40cf7c2725",
Expand Down Expand Up @@ -229,7 +243,9 @@
}
},
"source": [
"You've just seen an example of **recursion**!!!\n",
"<div class=\"alert alert-info\">\n",
"You've just seen an example of <b>recursion</b>!!!\n",
"</div>\n",
"\n",
"Recursion in Python occurs when a function calls itself during its execution. This programming technique is useful for solving problems that can be broken down into smaller, repetitive tasks.\n",
"\n",
Expand Down
Loading

0 comments on commit cfd05b3

Please sign in to comment.