Skip to content
/ maze Public

An algorithm for finding a way out of the maze.

Notifications You must be signed in to change notification settings

Olena-web/maze

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

maze

An algorithm for finding a way out of the maze. Write an algorithm for finding a way out of the maze. The maze is a 2-dimensional array in which:

0 - start position + - way # - wall The solution should be an array of strings with a sequence of necessary actions to exit the maze.

Example of answer:

['left', 'top','top','left','left','bottom','bottom','left']`

  • JS
  • ALGORITHM
  • DFS
  • BFS

About

An algorithm for finding a way out of the maze.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published