https://github.com/jayfunc/find_all_maze_path
Find all paths that can complete the maze from start point to end point.
https://github.com/jayfunc/find_all_maze_path
Last synced: 2 months ago
JSON representation
Find all paths that can complete the maze from start point to end point.
- Host: GitHub
- URL: https://github.com/jayfunc/find_all_maze_path
- Owner: jayfunc
- Created: 2022-01-24T05:42:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-24T05:48:03.000Z (over 3 years ago)
- Last Synced: 2025-03-09T19:34:44.003Z (3 months ago)
- Language: C++
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# find_all_maze_path
Find all paths that can complete the maze from start point to end point.# Rules:
Every grid can be passes only once at one path, it's not necessary to pass every single grid at one path, directions can be up, left, right, down.For more info, you can visit https://www.cnblogs.com/thisDart/p/15838091.html