diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-02-27 15:38:19 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-02-27 15:38:19 +0100 |
| commit | 38f37d099fde303f603e8461549986504e747999 (patch) | |
| tree | f0ba92bb490cc057203fbd5f1824b4b3632e7f20 /src | |
| parent | 5a41e71c95fe879f9fb93aa0472a8f1b3fbd028c (diff) | |
| download | sebastiano.tronto.net-38f37d099fde303f603e8461549986504e747999.tar.gz sebastiano.tronto.net-38f37d099fde303f603e8461549986504e747999.zip | |
Fixe typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/talks/ecm/index.html.raw | 2 |
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> |
