Fix typo in markdown explanation for Euler3.ipynb

This commit is contained in:
Peter Norvig
2026-07-18 20:21:34 -07:00
committed by GitHub
parent ee268061e8
commit 506ef02f1a

View File

@@ -105,7 +105,7 @@
"id": "8bf8dd51-8e06-4572-85fa-fe42875e0305",
"metadata": {},
"source": [
"We can represent the execution of the program as a series of equations, one per line. Using `F` as an abbreviation for `largest_prime_factor`, here is hjow we find the largest prime factor of 360:\n",
"We can represent the execution of the program as a series of equations, one per line. Using `F` as an abbreviation for `largest_prime_factor`, here is how we find the largest prime factor of 360:\n",
"\n",
" F(360) = max(2, F(180))\n",
" F(180) = max(2, F(90))\n",