From ae7762b800ad49b6f81cf1225a8687821a164b97 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Wed, 28 Sep 2022 09:49:12 +0200 Subject: [PATCH] correctedtypo --- slides/cours_2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/cours_2.md b/slides/cours_2.md index 99ba3e4..ae24e44 100644 --- a/slides/cours_2.md +++ b/slides/cours_2.md @@ -45,13 +45,13 @@ $$ . . . ```python -entier factorielle(n) +entier factorielle(entier n) i = 1 fact = 1 tant que i <= n fact *= i i += 1 - retourne i + retourne fact ``` # Exercice: la factorielle -- GitLab