aboutsummaryrefslogtreecommitdiff
path: root/src/talks
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-02-27 15:38:19 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2025-02-27 15:38:19 +0100
commit38f37d099fde303f603e8461549986504e747999 (patch)
treef0ba92bb490cc057203fbd5f1824b4b3632e7f20 /src/talks
parent5a41e71c95fe879f9fb93aa0472a8f1b3fbd028c (diff)
downloadsebastiano.tronto.net-38f37d099fde303f603e8461549986504e747999.tar.gz
sebastiano.tronto.net-38f37d099fde303f603e8461549986504e747999.zip
Fixe typo
Diffstat (limited to 'src/talks')
-rw-r--r--src/talks/ecm/index.html.raw2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/talks/ecm/index.html.raw b/src/talks/ecm/index.html.raw
index cf168b7..1ed9eb5 100644
--- a/src/talks/ecm/index.html.raw
+++ b/src/talks/ecm/index.html.raw
@@ -410,7 +410,7 @@ def factorize(n: int) -> list:
410 410
411 f = find_factor(n) 411 f = find_factor(n)
412 412
413 return factorize(n) + factorize(n//f) 413 return factorize(f) + factorize(n//f)
414</code></pre> 414</code></pre>
415 415
416<ul> 416<ul>

Generated with cgit - Back to sebastiano.tronto.net