diff --git a/S2/TP4/tp4.py b/S2/TP4/tp4.py index 985b5a1..439b8bf 100644 --- a/S2/TP4/tp4.py +++ b/S2/TP4/tp4.py @@ -118,12 +118,10 @@ squestion('b') # Effectuer de nombreuses recherches dans LEXIQUE # algorithmes utilisés # Définition des éléments choisis pour la recherche -from random import randint -NB_ELEMENTS = 10 -elements = list() -taille = len(LEXIQUE) -for n in range(NB_ELEMENTS): - elements.append(LEXIQUE[randint(0, taille)]) - -# +def creerListeRecherche(l, dans, hors): + elements = list() + taille = len(LEXIQUE) + for n in range(dans): + elements.append(LEXIQUE[randint(0, taille)]) + return elements