Merge branch 'master' of githubu:GeoffreyFrogeye/tp-info

This commit is contained in:
Geoffrey Frogeye 2015-03-10 11:25:21 +01:00
commit 54f55191eb

View file

@ -134,6 +134,16 @@ compteur = 0
question(2)
def tri_et_compte(foo, l):
assert(type(l)==list)
global compteur
compteur = 0
return (foo(l), compteur)
partie("Analyse du tri par sélection")
question(1)