Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
zip(*buildings) solution in Clear category for The Highest Building by kdim
def highest_building(buildings):
b = list(zip(*buildings))
return [b.index(max(b))+1, max(b).count(1)]
Jan. 16, 2021
Comments: