Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Rotate array then sum and look solution in Clear category for The Highest Building by scribani.andres
def highest_building(buildings):
lst = [sum(building) for building in zip(*buildings)]
biggest = max(lst)
return [lst.index(biggest)+1, biggest]
Aug. 29, 2020