Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: yawning solution in Clear category for The Highest Building by przemyslaw.daniel
def highest_building(data):
data = list(map(sum, zip(*data)))
return data.index(max(data))+1, max(data)
March 4, 2018
Comments: