prompt
stringclasses 1
value | maze
stringlengths 131
379
| solution
stringlengths 1
42
| grid_size
int64 5
9
|
---|---|---|---|
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ##### ##### ### #
# # # # # #
### # ####### ### #
# # # #
### # # # ##### # #
# # # E# # # #
# ######### # #####
# # S # #
# ####### # ### # #
# # # # # #
# # ### # ##### # #
# # # # # #
# ##### ### ### # #
# # # # # #
# # # ### ### # # #
# # # # # # #
###################
|
WSWSWWNWNNENEESE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ##### # ### # #
# # # # S #
### ####### ##### #
# # # #
# # # # # # ### ###
# # # # # # # # #
# ####### # # # ###
# # # # # #
# # ### # ##### ###
# # # # # #
### # ##### # # # #
# # # E# # # # #
# ### ### ### #####
# # # # #
# # ##### ####### #
# # #
###################
|
NWWSSWSSWSWSSEEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# S # #
# # # # # ####### #
# # # # # # # # #
### ####### # # ###
# #E # #
##### # ### # ### #
# # # # # # # #
# # # # ### # # # #
# # # # # # # #
# ##### # ##### # #
# # # # #
# # # ### ### #####
# # # #
####### ### # #####
# # # # #
# ##### ##### # # #
# # # # #
###################
|
WWSSEESEENW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### ### # # # # #
# # # # # #
##### ######### # #
# # # #
# # # # ######### #
# # # # # #
### ##### # # ### #
# # # # #
# ######### #######
#S # # # # #
# # # # # # # ### #
# # # # # # # #
######### # ### ###
# # #
# # # ### ### # ###
# #E# # # #
###################
|
NENNENNEEESENESSESWWSWSSSWWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# # ### ##### # # #
# # # # # # # #
# ### ##### # # ###
# # # #
# # # ##### ### ###
# # # # # # #
# # ##### # ##### #
# # # # # # # # #
# ### # # ### ### #
# # # # #
# ##### ### #######
# E # #
# # ### ##### ### #
# # # # #
# ######### #######
# S # #
###################
|
WNNE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
##### # ### ##### #
# # # # # # # #
# ### # # ### # # #
# # # #
##### # # # ##### #
# # # # #
# # ####### ### ###
# # # # #
### ####### # # ###
# # #S # #
# # # # # # ### ###
# # # # # # # #
# ############# # #
# E # # #
##### ##### # #####
# # #
###################
|
ENNNWSWNWSWSSWSSEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # # #
# # # ### # ### ###
# # # # #
### # # # ### ### #
# # #E# # # #
# ### # ### # # # #
# # # # # #
# ##### # ### ### #
# # # # # # #
# ##### ### ### # #
# # S# # # #
# # ####### #######
# # # #
# # # ##### # #####
# # # # # # #
##### ### # ### # #
# # #
###################
|
WWSSWNNNNEEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ##### # ##### ###
# E # #
# ########### # # #
# # # # # # #
# # ### ### # # ###
# # # # # # #
# ####### # ##### #
# # #S #
# # ####### #######
# # # #
# # # ### # # # # #
# # # # # # # #
# ##### # ####### #
# # # #
# ####### ### # # #
# # # # # #
###################
|
ESSWNWWWWNNNNEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #E #
### # # # # ##### #
# # # # # # #
# # # # ##### # # #
# # S# # # #
# # ##### # # #####
# # # # # # #
# # ### ##### # ###
# # # #
######### ### ### #
# # # # #
# ##### ### # # # #
# # # # # # #
##### # ##### ### #
# # # # # #
# # ##### # # # # #
# # # # #
###################
|
WSSEEESWSSESENENNNNNWWWNEEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### # # ### ### #
# # # # # # #
# ### ##### # ### #
# # # # #
# ####### ### ### #
# # # # #
# # # ####### ### #
# # # # # #
### ##### ##### # #
# # # # # #
# ### ##### # # # #
# # # # # #E#
### # # ######### #
# # # #
# # # # ### ### # #
# # # #S # #
###################
|
EENEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### ##### ### ###
#S # # #
# ####### # ##### #
# # #
# # ### # # ##### #
# # # # # # #
######### ####### #
# # # E# #
# ##### # ####### #
# # # #
### ####### # #####
# # # # # # #
# ##### # # ##### #
# #
##### # # ##### # #
# # # # # #
###################
|
SEEEESSE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # # # ### # ### #
# # # #
##### # # ##### ###
# # # # #
# ####### # # # # #
# # # # # # # #
# ### ### # # ### #
# # # # # # #
# ### # ##### # ###
# # # S# #
### ####### ### # #
# # # # #
# ### ########### #
# # # # #
# # ### # ### # ###
# # # # #E #
###################
|
NESESSWSWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ####### # #######
# # #
# ### ##### ##### #
# # # #
### ### # ####### #
# # # # # # #
# ####### # # # ###
# # # # #
### ### # ### ### #
# # # #E# #
# ### ######### # #
# #S # #
# # ### ### ##### #
# # # # # # #
##### ##### # ### #
# # # #
###################
|
EEEEEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ### ### #######
# # # #
##### ##### # # # #
# # # # # #
##### ### # ### ###
# # # # # # #
# # # # # # # ### #
# # # # # #
# ### ### ##### # #
#E# # # # # #
# # ### ######### #
# # # # #
##### ### ##### # #
# # # #
# ### ######### # #
#S # # # #
###################
|
NEENWWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
### # ### ### # ###
# #E # # # # #
# ############# # #
# # # #
# # # # ### # # # #
# # # # # # #
# ### ##### #######
# # # # #
# ### ### ##### # #
# # # # # #
### ############# #
#S# # #
# # # # ### ##### #
# # # # # #
# ##### ### # #####
# # # #
###################
|
SENNENNNWSWNNENES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# #
##### # ######### #
# # # # #
######### # ##### #
# # #
### ### ##### ### #
# # # # #
# ########### ### #
# # # # # # #
##### # # # ### ###
# # # #
### # # ##### ### #
# # # #E# # #
# # ##### ### #####
# S# # # #
### # # ### ### # #
# # # # #
###################
|
NNESENENESESSWWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# # ### # ### # ###
# # # # # #
# # ##### ##### ###
# # # # # #
# # ### # ### ### #
# # # # # # # #
# # # ### # # ### #
# # # # # # # #
# ### ##### # # ###
# #E# #
# # # ##### # #####
# # # # # S #
### ### # # # ### #
# # # # # # #
# # ### ##### ### #
# # # #
###################
|
WSSWWWNWWNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # ### # # ### # #
# # #E # #
### # ##### # # # #
# # # # # #
# ##### ####### # #
# # # # # #
# # # # # ####### #
# # # # # # #
# # # # ####### # #
# # # # # # #
####### ####### # #
# # # # # #
### # ### ### ### #
# # # S# #
### # ### # # ### #
# # # # #
###################
|
WSEENNNNNNNWWWNWSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # # #
# ### # # # # # # #
# E # # # S# #
# ### # # ##### # #
# # # # # # #
# # ### ##### # # #
# # # # # #
# ##### ##### # ###
# # # # # #
# # ### # # ### # #
# # # # # #
### # ### ##### # #
# # # # # # #
# # ### ####### ###
# # # # # # #
# # # # ### # # # #
# # # # # #
###################
|
WWNWWSSSSWWSWNNNNE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
### ### # # # ### #
# #S# # #
# ##### ######### #
# # # # #
# ### ##### # ### #
# # # # # #
# ### # # # ### ###
# # # # # #
# ### ### ##### ###
# # # # #
# # # # # # ### # #
# # # # # #E # # #
##### ### ####### #
# # #
# ##### ### ### # #
# # # # # #
###################
|
SWSESESES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# ##### # ### ### #
# # # #
# # ##### ### ### #
# # # # #
# ##### # ##### ###
# # # # # #S#
# ### ### ### ### #
# # # # # # #E#
# # ### ### # # # #
# # # #
# ### ####### #####
# # # # #
# # # ### ### #####
# # # # #
# ### ####### ### #
# # # #
###################
|
S
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# # ### ### ### # #
# # # # # # #
# ### ### ### ### #
# # # # # #
##### ### # ##### #
# # # # #
# ##### # # # # # #
# # # # # # #
# ##### # ##### # #
# # # # #
# ##### # ####### #
# # # # # #
# # # ##### ### ###
# # # # # S#
# ### # ### ### # #
#E# # # #
###################
|
WSWWNNWNWSWWSWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
##### ##### ##### #
# S # # # # #
# # # ### # # # # #
# # # # # E# # #
### # # ######### #
# # # # # #
# # ### ##### # # #
# # # #
##### ### # ### ###
# # # # #
####### ####### ###
# # # # # #
# ### ### ### # # #
# # # # #
# # # # # # ### ###
# # # # # # #
###################
|
ENEEESSE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
#S #
##### # ### ### # #
# # # # # # # #
# ### ### # # # ###
# # # # # # #
# # # # ##### ### #
# # # # # #
# ### ######### ###
# # #
### ##### ####### #
# # # #
# ##### ######### #
# # # # #
### # ### ##### # #
# # # # # E #
# # ####### # ### #
# # # # #
###################
|
EESSSSEEEEEESSSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ### # ### ##### #
# # # #E# #
### ### # # ##### #
# # # # # # #
# # # # ### ##### #
# # # # #
# ### ##### ### ###
# # # # # # # #
# # ##### ### # ###
# # #
# # # # ##### ### #
# # # # # # #
### ### ### # ### #
# # # # # # #
# ### ##### ### # #
# S # # #
###################
|
WNENNEESEESSEENENNWNNENNNWWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
### # ### ####### #
# #
### ### # ####### #
# # # #S# #
# # ### ###########
# # # # #
### ### ##### # ###
# # # # #
### ######### # ###
# # # #
# # ### ### #######
# # # # # #
# # ### # ### # # #
# # # # # # E #
# # ##### # ##### #
# # # #
###################
|
NWWWSSSSSSSEEENNEESE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
#S# # # #
# # ####### ### # #
# # # # #
### ##### # # #####
# # # # # E#
# ### ### ### #####
# # # # #
# # # # # ### #####
# # # #
### # ##### # #####
# # # # # # #
# ### # ##### ### #
# # # # #
# # ##### # #######
# # # # # #
# ### ##### # # # #
# # # # #
###################
|
SESWSSENEESEEENNEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# ### ### # ### # #
# # # # #
##### ### ##### # #
# #S # # #
# # ######### # ###
# # # # #
# # ### # # # ### #
# # # # # # #
### ######### #####
# # # #
##### # ##### # ###
# #E # # #
# # ### # # ##### #
# # # # # # #
# ### # ##### #####
# # #
###################
|
EEEESSSWWWSSSWNWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # # #
# ##### # # # # # #
#E# S# # #
# # # ##### ##### #
# # # # #
# # ### ##### # ###
# # # # # #
# ### ### ####### #
# # # # # # #
### # # ####### ###
# # # #
### ##### ##### # #
# # #
##### ##### ##### #
# # # # #
# # ### # ##### # #
# # # # # #
###################
|
WSSWNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
### ### # # # # # #
# # # # #
# ######### # # ###
# # # # # # # #
### # # # # # # # #
# # # #E# # # # #
# # ### # ####### #
# # # # #
# # # ########### #
# # # #
# ####### # ##### #
# # # # # #
# ### ### ### # # #
#S # # # # #
####### # # # # # #
# # # # #
###################
|
EENEENWWNEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ### # ##### ### #
# # # # # # # # #
### # # # # # # ###
# # # # # #
# # # # ### # ### #
# # # # # #
### ### # #########
# # # # # # #
### ##### # # # # #
# E # # S# # # #
### ### # # # ### #
# # # # # #
##### ##### ### # #
# # # #
# ### ### # ### # #
# # # # # #
###################
|
WNNENWNWNWSSWSSS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ### ##### ### # #
# # # # # #S#
# ### # ### #######
# E# # # # #
####### ### # ### #
# # # # #
# ##### ### ### ###
# # # #
####### # ##### # #
# # # # # #
# ### # ### # #####
# # # #
# # ### ### ### # #
# # # # # #
##### ######### # #
# # # #
###################
|
NWWWSSSSWSWNNNWNNWWSSE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ######### # # # #
# # # #E # #
# # # ######### # #
# # # # # # #
# # # # ### ### ###
# # # # # #
# ### ### # ### # #
# # # # # # # # #
# # ### ### # # # #
# # S# #
##### # ### # # # #
# # # # # # #
# # ##### ##### # #
# # # # # # #
# ### ### ### ### #
# # # # #
###################
|
WNNNEENW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # # # # ####### #
# # # # # #
# ### ####### ### #
# # # # # # #
# # ####### ### # #
# # # #
# ### ####### ### #
# # # # #
# ### ### # ### ###
# # # # # # #
##### # # # # ### #
#S# # # # # #
# # # # ##### # # #
# # # # #E #
# ####### #########
# # #
###################
|
SENENNNWNENENEEEEESSSSWSESSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ##### ####### # #
# # # #
# ##### # ### # # #
# # # # # # #
# # ##### ####### #
# #S # #
# ####### ##### ###
# # # # # #
# # # ##### # # ###
# # # # E#
# # # ####### #####
# # # # # # #
##### # # ### #####
# # # #
### # # # ### # ###
# # # # #
###################
|
ESEESEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ####### ##### # #
# # # # # #
# # ####### #######
# # #E # # # #
# # # ##### # ### #
# # #
# ####### ##### # #
# # # # # #
##### # ### # # # #
# # # # # # # #
# # ####### ### # #
# S # # # # #
# ### # # # ### ###
# # # # #
# # ### ### ### ###
# # # # #
###################
|
EESEESEENNNNNWWWWWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# S # #
##### ### ##### # #
# # # # # #
# ##### # # # #####
# # # # #
####### # # # ### #
# # # # # # # #
# # ##### ##### # #
#E # # #
### ##### # ### ###
# # # # # #
# ### ######### # #
# # # # # # #
# # # # ### # # # #
# # # # # #
# # # # # # ##### #
# # # # # # #
###################
|
SSSSWWWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# # # ### ### # # #
# # # # # # #
# ### # # ####### #
# # # # # # # # #
# # ##### # # # ###
# # # # # # #
# ### # # ####### #
# S# # # #
# ##### ### # # ###
# # # #E #
# # ### # # ### ###
# # # # # # # # #
# # # ### ### # # #
# # # # # # #
# ### ####### ### #
# # #
###################
|
WWSSSSEEEEEENENN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
####### ### #######
# # # # #
# # ### ######### #
# # #S# #
### ##### ### # # #
# # # # #
# ### # # #########
# # # # # # #
### # # # # # ### #
# # # # # #
# ### ### # # ### #
#E # # # # #
# ### ##### # # ###
# # # # # #
# # ##### # # ### #
# # # # # #
###################
|
SWNWWSSWNWSSSWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
##### ##### ##### #
# # # # #
### ### ### ##### #
# # # # #
# ### ### # # ### #
# # # # # #
######### # # ### #
# # # # # #E#
# ### ### # # # # #
# # # # # # #
# ##### # # ### # #
# # # # # # #
# ### ### # # # # #
# # # # # #
### # ########### #
# S # #
###################
|
WWNNEESENNNENEES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### # ### # ### #
# # # # #
# ### ######### # #
# # # # # # #
# ####### # # # ###
# # E# # # #
# # # ##### # ### #
# # # # # # #
# # # ### # ##### #
# # # #
### ### ### # ### #
# # # # S# #
# # # ######### # #
# # # # # # # # #
# ####### # # ### #
# # #
###################
|
WNWNWSWWNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
#S # # # #
# ### # ### ### # #
# # # # # #
# ########### # # #
# # # # # #
### # # # # ### ###
# # # #
# ####### ##### ###
# # # # # E #
# # # # ### # # # #
# # # # # # # #
### # # # ##### # #
# # # # # # #
# ####### ### # ###
# # # # # #
# ######### # ### #
# # #
###################
|
SEENEEESESWSEESW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# S# # #
# ### ####### # ###
# # # # #
# # # ####### # ###
# # # # #
# # ######### # # #
# # # # # # #
# ##### ######### #
# E # # # #
### # ### ##### # #
# # #
# # ### # # ##### #
# # # # # # #
##### ####### # ###
# # # # #
### # ##### # ### #
# # # # #
###################
|
WSSSSE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # S # #
# ##### # ### ### #
# # # # # # #
# ### # # # # # # #
# # # # # #
# ####### ### #####
# # # # #
# # ### ####### ###
# # # # # #
# # ##### # # ### #
# # E# #
# ############# # #
# # # #
# # ### ### # # # #
# # # # # # #
# ####### ### # ###
# # # # #
###################
|
SSSESESSWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ####### # ### # #
# # # # # # # #
# # # # # ##### # #
# # # # #
# # # # ##### ### #
# # # # # #
##### ### ##### ###
# # S# # # #
# ### ### ### # # #
# # # # # # # #
# ### ### # # ### #
# # # # # # # #
# # # # ##### # # #
# # E # #
# # ### ####### # #
# # # # #
###################
|
WSSSE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # E# # #
# ##### # # # # # #
# # # # # # # #
# ### # # ####### #
# # # # #
# ####### ### # # #
# # # # # #
# # ### ####### # #
# # # # #
### ### ### ### ###
# # # # #
# ### ### ### ### #
# # # # # #
# ### # ### # #####
# # # # # #
# # ### ######### #
# # S# #
###################
|
WWNENNENNENNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
### ##### # # #####
# # #
### ### ### ### # #
# # # # # # # # #
# # # ##### # # # #
# # # # #
### ##### ##### ###
# # # #
##### # ##### # ###
# E# # # # #
# ########### # ###
# # #S # # #
# ### ##### ### ###
# # # #
### ##### ### ### #
# # #
###################
|
EESWWWWWNNE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ##### ### # # #
# # # # #
# ##### ####### ###
# # # # #
# # ### ### ##### #
# # # # # #S#
# # ##### ##### # #
# # #E # #
# # ######### ### #
# # # # #
# # # ######### # #
# # # # # # #
# ##### ##### ### #
# # # #
# ######### ### ###
# # #
###################
|
NWNNWWWSWSEESWSWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #E # #
### ### # ####### #
# #
# ####### #########
# # # # # # #
# # ### # ### # # #
# # # # # #
# # ####### ### ###
# # # # # #
# ### # # # # ### #
# # # # # #
##### ####### # # #
# # # # # #
# ##### # ### # # #
# # # # # #
# ### # # ### # ###
# # #S # # #
###################
|
NNEENNWNWNNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # # # ##### ### #
# # #E # #
# ### ########### #
# # # # # #
# ### # ##### # # #
# # # # # #
# ####### # # ### #
# # # #
# ### # ### # ### #
# # # # # # # #
# ####### # ##### #
# # # # # S#
### # # # # ### # #
# # # # # #
# # ### # ##### # #
# # # # # #
###################
|
NNNNNNWWSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
### # # ### ### ###
# # #E# # # #
# # # ### # # # ###
# # # # #
# ### ### ####### #
# # # #
# # ####### # #####
# # # # # # #
# # ### # ### # ###
# # # # # S #
### # ### # # # ###
# # # # # # #
####### # # ### ###
# # # # # # # #
##### # # ### # # #
# # #
###################
|
WNNEENWNWSWWSWWNNNES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ### # ##### # ###
# # # # # # # #
# # # ### ##### # #
# # # # #
# # ### ### #######
# # # # #
# ### ### ### # # #
# # # # # #
####### # ### # # #
#S # E# # # # #
### ####### ##### #
# # #
# ### ####### # ###
# # # # # # #
# # ### # # ##### #
# # # #
###################
|
ESESESEENENEENNWWNWWSS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### # # ##### ###
# # # #E #
### # # ##### ### #
# # # # # #
# ### ##### ##### #
# # # # # #
# # ### ####### # #
# # # # # #
# ### ### ### ### #
# # # # # # #
# ### # ##### ### #
# # # # #
# ######### ### # #
# # # #S #
# ##### ### # # # #
# # # #
###################
|
ENNNNNNW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ##### # # # ### #
# E# # # # # # #
# # # # ### ##### #
# # # #
### ### ### ### ###
# S # # #
######### # #######
# # # # # # #
# # ### # ### # # #
# # # # # #
# ##### ##### # ###
# # # # #
# # ### # ####### #
# # # # # # #
##### # ##### # # #
# # #
###################
|
NN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
### ######### ### #
# # # # #
### ### ### # ### #
# # # # # # #
# # # # ##### # # #
# # # # #
# # ### # ##### # #
# # # # # #
##### ####### # ###
# # # # #
####### # ####### #
# # # E #
# ### # # # ##### #
# # # # #S #
### ####### # #####
# # # #
###################
|
ENWWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ### ### ### ###
# # # # #
# # ##### # # ### #
# # # # # # #
### # # ##### #####
# # # # #
# ### # ##### ### #
# # # # # #
# # ### # ### ### #
# # # # # # #
########### # # # #
# # # # # # #
# # # ##### # ### #
#S# E # # # #
# ### ### ### ### #
# # # #
###################
|
SEEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # E #
# # # ####### ### #
# # # # # # # #
# # ### # ### # # #
# # # # # #
# ### # # #########
#S # # #
# ### ########### #
# # # # # #
# # ### ##### # ###
# # # # # #
# ####### # ### # #
# # # #
# ### ######### ###
# # # # #
# # # # ### # # # #
# # # # # # #
###################
|
EENWNNESESSENEENN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # # # ### ### ###
# # # # # #
# # ###############
# # #
# # # # # # ##### #
# # # # # # #
####### ### #######
# # # # #
##### ##### # ### #
# # # # # #
# ##### ####### # #
# S #
####### ##### #####
# # # # #
# # # # ####### # #
#E# # # #
###################
|
SSWNWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# S# # #
### ### # # ### # #
# # # # # # #
# ### # ##### ### #
# # # # #
### ### ####### ###
# # # # # #
# # # # # ####### #
# # # #
##### ##### # # ###
# # # # # # # #
# # # # ##### #####
# E # #
# # # # ####### ###
# # # # # #
### ######### # ###
# # # #
###################
|
SEESSSWSSEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
### # ### # # # ###
# # # # # E#
### ### # # ### # #
# # # # # # #
# ##### # # #######
# # # # #
# ####### # ### # #
# # # # # #
### # ##### ### # #
# # #S# #
# ##### # # #######
# # # # # #
# ### ####### #####
# # # #
# # # # ##### # ###
# # # # # #
###################
|
NNNNNESEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # # # #
# # # # # # # ### #
# # # # #
# ########### # # #
# # #S# #
##### # ### # # # #
# # # # # # #
# # # ### ### # # #
# # # # # # #
# ######### # # ###
# # # # # # #
### ### # # ### # #
# #E # # # #
# # ### ### # ### #
# # # # # # #
### ### ### ### # #
# # # #
###################
|
SWSSWSSWWNW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
### # # # ### # ###
# # # # # # #
# # # ### # ### # #
# # # # # #
### ### ######### #
# # # #
### ### ### ##### #
# # # # # # #
# ### ### ####### #
# #S # # # #
# ### # ##### # # #
# # # # # # #
# # ### # # # # ###
# # # E# # #
# ####### ### ### #
# # # #
###################
|
ESSEEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
### ### ### # ### #
# S# # # #
# ##### # ### ### #
# # # # # #
# ####### ##### ###
# # # # #
# ####### # ### # #
# # # # # #
# ### # ##### ### #
# # # #
# ### # ##### # # #
# # # # # # #
# # ### # # # # # #
# # # # # # # #
####### ### ##### #
# # #E #
###################
|
WSSSSSEENNESEEEEESSSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # E# #
# # ##### # ##### #
# # # # # #
# # ### # ### ### #
# # # # # #
# ### ### # # #####
# # # # # # #
# ##### ### # ### #
# S# # # # # #
### # # # ####### #
# # # # # # #
### # ### # # ### #
# # # # #
# # # ##### ### ###
# # # # # #
######### # ### # #
# # #
###################
|
SSSENNNENWNEENN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
### # ##### # # ###
# # # # #
# ##### ##### ### #
# # # # # #
### # ### ### # # #
# # #E # # # # #
# # # ##### #######
# # # #
### ####### ##### #
# # # # #
# ##### ### ### # #
# # # # # # #
# # # ########### #
# S # #
### ##### # ##### #
# # # #
###################
|
EEEESEEENNNWWWNNWNEENNWSWWWNWSWSESSEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# ### # # ### #####
# # # # # #
# ##### ### # # # #
# # # #
# # ### # # #######
# # # # # # #
# ##### ### # ### #
# # # # #
##### ######### # #
# #S#E#
### # # # ### # # #
# # # # # # #
# ### ##### ### ###
# # # # #
# ##### ### # ### #
# # # # # #
###################
|
NES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ### # ##### ###
#S # # # #
# ### ########### #
# # # # #
######### ### # # #
# # # # # E#
# ##### ### ### ###
# # # # # #
# ### ##### # # # #
# # # # #
# ### # # ### #####
# # # # # # #
### # # # # ### ###
# # # # # #
### ### ##### # # #
# # # #
###################
|
EESEESWSEESEENNE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ####### # ##### #
# # # # # #
##### # ### # # ###
# #E# # # #
### # ### ### # ###
# # # S# # #
### ####### ### ###
# # # # #
##### ### # # # ###
# # # # #
# ####### ### ### #
# # # # # #
# ### ### # ### # #
# # # # #
# # # ### ##### ###
# # # # #
###################
|
NWNWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
##### ####### # # #
# # # # # #
# # # ### # # ### #
# # # # # # # #
### ####### # # # #
# # # # # #
### # ### ##### ###
# # # # # # #
### # # ### # ### #
# # # # # # #
# # ####### ### # #
# S # #E#
### ##### ### # # #
# # # # # # #
# # ### # ##### ###
# # #
###################
|
ESSEEENEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
##### # ######### #
# # #
# ##### ##### # ###
#E# # # # # # #
# # # ##### ### # #
# # # # # #
# ### # ### ### ###
# # # # #
# # # ######### ###
# # # # # #
# ####### ### # ###
# # S # #
# # ####### ##### #
# # # # # #
# ### # # # ##### #
# # # # #
###################
|
SEEENWNNNNNWWWWWWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# ### # ### # ### #
# # # # # # # #
# ##### # # # # ###
# # # # # #
# # ### # ##### # #
# # # # #
# # # ##### ##### #
# # #E S # #
# # # # ##### # ###
# # # # # # # #
# # ### ### # ### #
# # # # # # # # #
### # # # # # # # #
# # # # # #
# # ### # # #######
# # # # # #
###################
|
WWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ### # ### # ### #
# # # # # # #
##### ### ##### ###
# # # #
# ### # ##### ### #
#E # # S# # # #
### ##### # ### # #
# # # #
# # # ######### ###
# # # # # # #
# # ### # # ##### #
# # # # # # #
# ##### ### # # # #
# # # # # #
# ##### # ##### ###
# # # #
###################
|
WNWWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ### # ##### ### #
# # # # #
# ### ####### # ###
# # # #
# ### # ### #######
# # # # #S #
# # # ### # ### ###
# # # # # # #
### ##### ### # # #
# # # # # # #
# # ### ### ### ###
# # # # #
# # ### ####### ###
# # # #
### ######### # # #
# E # # # #
###################
|
NWWWNNWWSSSESSSSS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ##### ##### # # #
# # # # # # # #
### # ### # ##### #
# # # #
### ### ##### #####
# # # # # # # #
##### # ### # # # #
#S#E # # #
# # ### # ### #####
# # # # # #
# # # ### # # # # #
# # # # # #
# ### # # ####### #
# # # # # #
# # ### ### ##### #
# # # # # #
###################
|
SSENN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# # # ####### # # #
# # # # # #
# ### ### # ### ###
# # # # # #
############# ### #
# # # # # #
### ### ### # #####
# E # #
# ######### ### ###
# # # # # #
# ### # ### ##### #
# # # # # #
# # ##### ### ### #
# # S # # #
# # # # ### ### # #
# # # # # #
###################
|
WSWNWNNNEEE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
# # # ### ### # # #
# # # # # # #
# # ### # ### # ###
# # # # # #
# ####### # ### ###
# # # # # #
# ##### ### # # # #
# # # # # #
# # # # # # # ### #
# # # # # # E # #
##### # ####### # #
# # # # # #
### ########### ###
# # #
##### ####### # ###
# S # #
###################
|
ENENNW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# #S # # #
### ### ### # # # #
# # # # # #
### ##### ### #####
# # # # #
# ##### ### # # ###
# # # #
### ### # ### ### #
# #E # # # #
# ####### ### # # #
# # # # #
# ### ####### # # #
# # # # # # # # #
### # ### # # #####
# # # # # #
# # ### ### ### # #
# # # #
###################
|
EEESWSEESSWWNWSW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
### # ##### ##### #
# # # #
# # ########### ###
# # # #
# ####### ### # ###
# # # # # #
### # ##### ### # #
# # # # # #
# ##### # # # ### #
# # # # # # #
# ### ####### # # #
# # # # #
##### ### # ### ###
# # #S# #E #
# # # # ### ##### #
# # # # #
###################
|
NESSEEENW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
### ### # ##### ###
# # # #
### ##### ### ### #
# E # # # #
##### # ######### #
# # # # # #
# ####### ### ### #
# # # # # # #
# # ### # # # # # #
# # # # # # #
# ### ### ##### # #
# # # # #
# ### # ####### # #
# # # # # # #S# #
# # # ### # ##### #
# # #
###################
|
NENNNNNWNWWWWSWWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # # #
# # # ### ### ### #
# # #
# # # # ####### # #
# # # # # # #
# ### ### # # ### #
# E S# # # # #
######### ####### #
# # # #
# ########### ### #
# # # # # # # # #
# # # # ### ### # #
# # #
# ##### ### ##### #
# # # #
# # # ######### ###
# # # # #
###################
|
W
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
# ### ### # # #####
# # #S # #
### # ### # # #####
# # # # # # # #
### ### # # # ### #
# # # # # #
# ### # ### # ### #
# # # # # # # #
# # ### ### ### # #
# # # # # # #
### ##### ##### # #
# # # E# # #
### ### ### ### # #
# # # #
# ### ####### # ###
# # # #
###################
|
EENESSSEESSSSWSWNWNE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
### ### # # ### ###
# # # # # # #
##### # ### # ### #
# # # # # #
# # ### # ### ### #
# # # # # # # #
# # ####### # # # #
# # # #
# ### ##### #######
# # # # # # # #E# #
# # ### # ### # # #
# # # # #
# ### # ### ### # #
# # # # S#
### # # ##### # ###
# # # # #
###################
|
WNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # E #
# ### ### ##### ###
#S # # # #
# ### # ### # #####
# # # # #
### ##### # ### ###
# # # # # # #
### # # ##### # # #
# # # # # # #
# # # # ##### ### #
# # # # # #
# # # ### ####### #
# # # # # # #
# ### ### # ### # #
# # # # #
### # ####### # ###
# # # #
###################
|
SESSSSWSEENNNNEENEENENWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # # ####### # # #
# # # # # #
##### # # # # # ###
# # # # # #
# # ### ### ##### #
# # # # # # #
# ####### # # # # #
# # # # # # #
### ##### #########
# # # E #
### ### ####### # #
# # # # #S# #
# ### # # # # ### #
# # # # # #
# # # # ### ### # #
# # # # # #
###################
|
NW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
####### ### # # # #
# # # # # # #
# # # # # # ##### #
# # # # # #
### ### ###########
# # # # #
# ### # # ### # # #
# # # # # # #
# ### ### ####### #
# # # # # #
##### # ##### ### #
# # # #
# ### # # # ##### #
# # # # #S# #E #
# # # # ### # # # #
# # # # # # #
###################
|
NEEESW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # # # ##### # ###
# # # # # # #
# ##### # ##### ###
# # # # # # #
# # # # # ### # # #
# # # # # S #
# ##### # # ##### #
# # # # #
# ##### # ### #####
# # # E# # # #
# # ### # # #######
# # # # # #
# ######### # ### #
# # # # # #
### # # ####### # #
# # #
###################
|
EENNNWWWWSSSSS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # ### # ### ### #
# # # #
##### ### ### # # #
# # # # # # #
# # ### ### ### ###
# # # #
# # ##### # ### ###
# #S # # # #
# ########### ### #
# # # # #
######### # ##### #
# # # # #
# # # ### # ### ###
# # # #E # # #
# ### # # # # #####
# # # # #
###################
|
NEENENNEESSESWWSESWSSWW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # # ##### # # # #
# # # # # # # #
# ### # ##### # ###
# S # # #
# # # ##### ### # #
# # # # # # #
### # # # ##### # #
# # # # # # #
# ######### ### ###
# # # # # # # #
# # # # # ### # # #
# # # # #
# # # # ######### #
# #E# # # #
# ### ####### # ###
# # #
###################
|
WSSWSSSENES
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # ### # ### # # #
# # # # # # #
# ### ##### # # # #
# # # # # #
### # ### # ##### #
# # # #
##### ##### ##### #
# # # #
# # ### ####### # #
# #E # # # #
##### # ###########
# # #S # # #
# ##### ### ### ###
# # # #
# ##### ### ##### #
# # #
###################
|
NNEENWNWWSSWS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # E # # #
# ####### # ### # #
# # # #
####### # ##### # #
# # # # # #
# # ##### ### ### #
# # # # # # #
# ### # # # ### # #
# # # # # # #
# ####### # # ### #
# # # # # #
# ##### # # ##### #
# # # # #S #
# ### # ### ##### #
# # # # # #
# # ### ##### # ###
# # # #
###################
|
EENNNWWNWWNN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # #
### # # ### # ### #
# # # # #
### # ### # # #####
# # # # # #
# ### # ### ### ###
# # # # # # #
# # ##### # ##### #
# # # # # #
# ### ##### ### # #
# # # # # #
##### # # ####### #
# E S # # #
### ######### # # #
# # # #
# ### # # ### ### #
# # # # # # #
###################
|
WW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # #
######### ### # # #
# # # #
### ##### # #######
# # # # # S#
##### # ### # # ###
# # # # #
# ### ####### # # #
# # # #E # # #
### ### ### ### # #
# # # # #
# ##### # ### # ###
# # # # #
# ### # # #########
# # # # # #
##### # # # # ### #
# # # # # #
###################
|
WSSSWWNW
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# #
# # ### # ####### #
# # # # # #
# ##### ###########
# # # # # #
# # # ##### # # # #
# # # # # # #
# # ### # ### ### #
# # # # # #
####### ####### # #
# # # # # #
# ### ##### ### ###
# # # S#
# ### # ##### # ###
# # E# # #
# # # ### # ### ###
# # # # # #
###################
|
WWSWSWN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ### # ##### ### #
# # # # #
# ##### ####### # #
# # # # #
### # # ##### #####
# # # # # #
# ### ##### ### # #
# # # # # #
# # ### # # ### ###
# # S# # # # #
# # ##### ### ### #
# # # # # # #E#
# ### # # # # # # #
# # # # # # # #
### # ##### ### # #
# # #
###################
|
NESSESSEEENN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# # ######### # # #
# # # # # #
### # # # # #######
# # # # #
# ##### ### # ### #
# # # # # # #
### # ### ##### ###
# # # # #
### ##### ##### # #
# # # #
# ### ######### # #
# # # # #S# #
# # # # ##### # # #
# # # # # # # #
# # ##### ### ### #
# # E #
###################
|
NNNWNWWWSESSWWSESESE
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
#S # # #E# #
# ### ### # # # # #
# # # # # # #
# # ### ### ##### #
# # # # # #
# ### ### ### ### #
# # # # #
# ### ##### #######
# # # # #
# # ####### # #####
# # # # #
# # # # ### ##### #
# # # # # #
# # # ### ####### #
# # # # # #
### ### ### ### # #
# # # #
###################
|
SSSSSSENNENEENENNESEN
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # #
# ### ### ##### # #
# # # # # # #
# # ####### # ### #
# # # # # #
# # # # # ##### ###
# # # # #
# ### # # ##### ###
# # # # # # E #
# # ### ### # ### #
# # # # # #
# # # # # ### # ###
# # # # # # # # #
# ####### # ### ###
# # # S #
# ##### ### ##### #
# # # #
###################
|
ESWWWNWNNWNNNEEEESS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # # #
# # # # ### # ### #
# # # # #
# # ####### # # ###
# # # # # # #
##### ### # ##### #
# # # #
##### # ### ### ###
# # # # #
##### ### # # # # #
# # # # # # #
##### ### ####### #
# #S # E#
# ##### ### ##### #
# # # # # #
### # # # ### # ###
# # # # #
###################
|
ESWWNWNNNEENESSEEESS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# # # # S #
# # # ### # ##### #
# # # # # # #
# # # # # # ##### #
# # # # # #
### ### # # # # # #
# # # # E# # # #
# ### ########### #
# # # # # #
### # ##### ### # #
# # # #
# ### ##### # # ###
# # # # # #
# ##### # ####### #
# # # # # #
# # ####### # # # #
# # # # #
###################
|
WWSSS
| 9 |
You are a navigation agent. Given an ASCII maze, move from the start cell 'S' to the end cell 'E'. Respond with a sequence of moves using the letters N, S, W, E
|
###################
# #S # # #
# ### # # ### ### #
# # # # # #
### ### ##### ### #
# # # # # # # #
# # # ### # ### # #
# # # #
### # # # ####### #
# # # # #
##### # # ### ### #
# # # # # # #
# ### ### # # ### #
# # # # # # #E#
# ### # # # ### ###
# # # # #
############### ###
# #
###################
|
ESWSSEEESEEEESS
| 9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.