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 Oleg_Domokeev
def highest_building(buildings):
buildings = list(map(sum, zip(*buildings)))
return [buildings.index(max(buildings)) + 1, max(buildings)]
July 18, 2019
Comments: