From 70444a407b306e01cb6c19104aa8f5bbed411aa5 Mon Sep 17 00:00:00 2001 From: Khai Hirschi Date: Mon, 27 Feb 2023 10:34:05 -0700 Subject: [PATCH] Fix example maze format --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d86a969..28cd6dc 100644 --- a/README.md +++ b/README.md @@ -59,17 +59,17 @@ If the maze has a solution, print `SOLUTION` on the first line of the output fil ``` 3 4 3 -1100 -0100 -0110 +1 1 0 0 +0 1 0 0 +0 1 1 0 -0000 -0000 -0010 +0 0 0 0 +0 0 0 0 +0 0 1 0 -0000 -0000 -0011 +0 0 0 0 +0 0 0 0 +0 0 1 1 ``` **Solution**