Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Next → solution in Clear category for The Highest Building by StefanPochmann
def highest_building(buildings):
h = sum(map(any, buildings))
return [buildings[-h].index(1) + 1, h]
March 26, 2018
Comments: