# comparer deux tableaux def compare_tableaux(t, u): """compare deux tableaux de même longueur, supposés triés""" for i in range(len(t)): if t[i] != u[i]: return False return True