Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
4-liner: flip a coin or maybe wall solution in Clear category for The Stone Wall by przemyslaw.daniel
def stone_wall(wall):
wall = [x for x in wall.split('\n') if x]
flipped = [x.count('0') for x in zip(*wall[::-1])]
return flipped.index(max(flipped))
Sept. 7, 2018