Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Deceptive solution in Creative category for Call to Home by veky
def total_cost(calls):
acc = __import__('collections').Counter()
for d, _, s in map(str.split, calls): acc[d] -= -int(s)//60
return sum(m + max(m - 100, 0) for m in acc.values())
June 12, 2014
Comments: