We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6041997 commit 043edc2Copy full SHA for 043edc2
notebooks/Ch13-Recursion.ipynb
@@ -165,12 +165,13 @@
165
"metadata": {},
166
"source": [
167
"### Factorial definition\n",
168
+ "\n",
169
"```\n",
- " 0! = 1 (base case)\n",
170
- " n! = n.(n-1)! for n >= 1 (general case)\n",
+ " 1! = 1 (base case)\n",
171
+ " n! = n.(n-1)! for n > 1 (general case)\n",
172
- "- Exercise - Implement factorial recursive solution\n",
173
- " - left as an exercise"
174
+ "- Exercise - Implement factorial recursive solution"
175
]
176
},
177
{
0 commit comments