sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

commit 38f37d099fde303f603e8461549986504e747999
parent 5a41e71c95fe879f9fb93aa0472a8f1b3fbd028c
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Thu, 27 Feb 2025 15:38:19 +0100

Fixe typo

Diffstat:
Msrc/talks/ecm/index.html.raw | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/talks/ecm/index.html.raw b/src/talks/ecm/index.html.raw @@ -410,7 +410,7 @@ def factorize(n: int) -> list: f = find_factor(n) - return factorize(n) + factorize(n//f) + return factorize(f) + factorize(n//f) </code></pre> <ul>