samedi 3 juin 2017

Algorithme python renvoyant 1 si les éléments de la liste sont deux à deux distincts et 0 sinon

def test_liste(L):
    V=1
    for i in range(len(L)):
                   for j in range(len(L)):
                       if L[i]==L[j] and i!=j:
                           V=0

Aucun commentaire:

Enregistrer un commentaire