def contient_doublon(t): """le tableau t contient-il un doublon ?""" s = [] for x in t: if x in s: return True s.append(x) return False