Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
max columns sum solution in Clear category for The Highest Building by flpo
from operator import itemgetter
def checkio(buildings):
return max(enumerate(map(sum, zip(*buildings)), 1), key=itemgetter(1))
March 1, 2018
Comments: