From 20ff4a469bc04191a22117d8a5bed533540fb829 Mon Sep 17 00:00:00 2001 From: Jean-Loup Beaussart Date: Tue, 3 Feb 2015 11:43:40 +0100 Subject: [PATCH] Changement chaine->list->sort() avec la fonction sort() de geoffrey --- S2/TP2/tp2.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/S2/TP2/tp2.py b/S2/TP2/tp2.py index 559661d..d67f21a 100644 --- a/S2/TP2/tp2.py +++ b/S2/TP2/tp2.py @@ -212,13 +212,10 @@ def sont_anagrammes1(chaine1, chaine2): if len(chaine1) != len(chaine2): return False - l1 = list(chaine1) - l2 = list(chaine2) + c1 = sort(chaine1) + c2 = sort(chaine2) - l1.sort() - l2.sort() - - return l1 == l2 + return c1 == c2 question(2)