Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
next & enumerate solution in Clear category for The Highest Building by flpo
def checkio(bs):
return next((j+1, len(bs) - i) for i, r in enumerate(bs) for j, v in enumerate(r) if v)
March 2, 2018
Comments: