Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Why? Because solution in Clear category for The Stone Wall by samatdav02
def stone_wall(wall):
wall = list(filter(lambda x: x != '',wall.split('\n')))
wall = list(map(lambda x: ''.join(list(x)),list(zip(*wall[::-1]))))
return wall.index(max(wall,key=lambda s: s.count('0')))
June 28, 2019