Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ZIP solution in Clear category for The Highest Building by maxalex324
def highest_building(buildings):
a = [sum(x) for x in zip(*buildings)]
return [a.index(max(a))+1,max(a)]
July 5, 2020
Comments: