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