From a68cdd2461b565ab72b3f636d640dc07e32bd129 Mon Sep 17 00:00:00 2001
From: Orestis <orestis.malaspinas@pm.me>
Date: Wed, 16 Nov 2022 10:45:35 +0100
Subject: [PATCH] removed ;

---
 slides/cours_7.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/slides/cours_7.md b/slides/cours_7.md
index 1b87709..e50177d 100644
--- a/slides/cours_7.md
+++ b/slides/cours_7.md
@@ -200,9 +200,8 @@ entier partition(entier tableau[], entier ind_min, entier ind_max)
         // mettre les plus petits à gauche
     
     // on met le pivot "au milieu"
-    échanger(tableau[i], tableau[pivot]);     
-    retourne i; // on retourne l'indice pivot
-}
+    échanger(tableau[i], tableau[pivot])    
+    retourne i // on retourne l'indice pivot
 ```
 
 # Tri rapide ou quicksort (6/8)
-- 
GitLab