From 241ff7fdf0a86c811e7f42fe29f9b38cd4406dad Mon Sep 17 00:00:00 2001 From: "paul.albuquer" <paul.albuquerque@hesge.ch> Date: Fri, 14 Mar 2025 17:01:34 +0100 Subject: [PATCH] Edit cours_17.md --- slides/cours_17.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/cours_17.md b/slides/cours_17.md index a2c6d9d..8c3d811 100644 --- a/slides/cours_17.md +++ b/slides/cours_17.md @@ -1235,9 +1235,9 @@ rien tamisage(tab, i) ```python entier ind_max(tab, i, g, d) ind_max = i - si tab[ind_max] < tab[g] && size(tab) > g + si g < size(tab) && tab[ind_max] < tab[g] ind_max = g - si tab[ind_max] < tab[d] && size(tab) > d + si d < size(tab) > d && tab[ind_max] < tab[d] ind_max = d retourne ind_max -- GitLab