Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Open Labyrinth by panaro32
def checkio(m,x=1,y=1,s=''):
if m[x][y]: return ''
if (x,y)==(10,10): return s
m[x][y] = 1
return max(map(lambda a,b,c: checkio(m,x+a,y+b,s+c),[1,0,-1,0],[0,1,0,-1],['S','E','N','W'])) or ''
May 15, 2014
Comments: