Fix nested max function call in Euler3.ipynb

This commit is contained in:
Peter Norvig
2026-07-18 20:23:01 -07:00
committed by GitHub
parent 506ef02f1a
commit 23d26c769d

View File

@@ -113,7 +113,7 @@
" F(45) = max(3, F(15))\n",
" F(15) = max(3, F(5))\n",
" F(5) = 5\n",
" F(36) = max(2, max(2, max(2, 3, 3, 5))) = 5"
" F(36) = max(2, max(2, max(2, 3, max(3, 5))) = 5"
]
},
{