Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
column.count('#') solution in Clear category for The Stone Wall by martin.pilka
def stone_wall(wall):
widths = [column.count('#') for column in zip(*wall.split())]
return widths.index(min(widths))
July 14, 2019