Exercice 77
Reprendre l'exercice précédent (Exercice 76) sans utiliser la méthode max().
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#coding: utf-8 def maxList(L): # initialisation de l'index du maximum de la liste i = 0 for j in range(0 , len(L)): if L[i] < L[j]: # on remplace i par j i = j return i # Exemple L = [3 , 4 , 7 , 12 , 43 , 22 , 9] print("l'index du maximum est : " , maxList(L)) # la sortie du programme est : l'index du maximum est : 4 |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 77: algorithme python qui détermine le maximum d'une liste sans utiliser la méthode max”