Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Spaceship Landing Strip by smilicic
checkio= lambda landing_map,good={'G','S'}:max((i-k+1)*(j-l+1) for i,line in enumerate(landing_map) for j,letter in enumerate(line) for k in range(i+1) for l in range(j+1) if all(lett in good for scanline in landing_map[k:i+1] for lett in scanline[l:j+1]))
Aug. 11, 2014
Comments: