From aec25c08ea1bb7a89ae055fe5fc1d4a7c6ee83c1 Mon Sep 17 00:00:00 2001 From: Julian Norton Date: Tue, 28 Nov 2017 23:09:59 -0500 Subject: [PATCH] clarify coordinates feature --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce7ebd0..9bf1c40 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ A simple usage example to find a path using A*. | e| +---+ ``` - You can ignore the +, - and | characters, they just show the border around your map, the blank space is a free field, 's' marks the start, 'e' the end and '#' our obstacle in the middle. You see the path from start to end marked by 'x' characters. We allow horizontal movement, so it is not using the upper-right corner. + You can ignore the +, - and | characters, they just show the border around your map, the blank space is a free field, 's' marks the start, 'e' the end and '#' our obstacle in the middle. You see the path from start to end marked by 'x' characters. We allow horizontal movement, so it is not using the upper-right corner. You can access `print(path)` to get the specific list of coordinates. Here The whole example if you just want to copy-and-paste the code and play with it: