Autonom
Enter a two dimensional maze and exit automatically.
...In this very first release, there's a two-dimensional matrix which is 10x10 size. Our autonom entity enters into the matrix from the pre-determined starting point which is (9,4). autonom is expected to find its way until it reaches the (0,x) point.
In version 1.0.0, we have limitations;
- We're in 2 dimensional world, meaning we have only x and y axis.
- We have a one-way graph. There's only one solution to find the way from the starting point to the (0,x) point.
Future versions will include 3 dimensional space and will include more complex mazes with many solutions.
...