Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Highest Building by l.szyman10
def highest_building(buildings):
high = [sum(i) for i in zip(*buildings)]
return [high.index(max(high))+1, max(high)]
May 27, 2020