Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Oneliner solution in Clear category for The Highest Building by Spiritusvini
def highest_building(buildings):
return [buildings[h := [max(row) for row in buildings].index(1)].index(1)+1, len(buildings) - h]
July 20, 2022
Comments: