Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
158 solution in Creative category for Call to Home by DiZ
def total_cost(c):
d=__import__('collections').defaultdict(int)
for l in c:d[l[:10]]+=(int(l[20:])+59)//60
return sum(v+(v-100)*(v>100)for v in d.values())
May 22, 2014
Comments: