Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
min(enumerate(cols(wall)), count '#' lambda key)[0] solution in Speedy category for The Stone Wall by Phil15
cols = lambda multiline: zip(*multiline.strip().split('\n'))
stone_wall = lambda wall: min(enumerate(cols(wall)), key = lambda x: x[1].count('#'))[0]
Sept. 7, 2018