I am trying to make a maze solver, and it is working except that instead of the path being marked by \"o\" I want it to be marked with \">\", \"<\", \"v\", \"^\" dependin
#marking maze[y][x] = "o" #recursive case if self.solve(x+1,y) == True : #right maze[y][x] = ">" return True if self.solve(x,y+1) == True : #down maze[y][x] = "v" return True ...
From Lix example. You need to uncomment maze[y][x] = "o", you need that row to prevent the node from being revisited