Lire la complexité d'un code
MCQQuelle est la complexité, en notation Grand-O, de la fonction suivante ?
def doublons(liste):
for i in range(len(liste)):
for j in range(len(liste)):
if i != j and liste[i] == liste[j]:
return True
return False

