Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: shortest the re(al) one solution in Creative category for Spaceship Landing Strip by przemyslaw.daniel
def checkio(t, s=__import__('re').search):
return max(p.count('G') for i in range(11) for j in range(11) if
s((p:=('.'*(len(t[0])-i+1)).join(['[GS]'*i]*j)), '#'.join(t)))
April 3, 2021
Comments: