First solution in Creative category for Median by panaro32
def checkio(l): l.sort() m = len(l)//2 return (l[m]+l[-m-1])/2
April 29, 2014
Comments: