Feat(1NSI): ajuste DS4
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-31 14:19:53 +02:00
parent 8848a46d99
commit 0b561c14bc
3 changed files with 33 additions and 28 deletions

View File

@@ -1,9 +1,7 @@
def maxi(L):
dernier_indice = len(L) - 1
valeur_max = L[0]
for i in range(1,dernier_indice):
if L[i] > valeur_max:
valeur_max = liste[i]
valeur_max = L[i]
return valeur_max