From 7de9d5469202989e27f83d4adf110bc0038637f8 Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Tue, 19 Oct 2021 09:31:42 +0200 Subject: [PATCH] Update README.md --- exercises/25/pacman_ai/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/25/pacman_ai/README.md b/exercises/25/pacman_ai/README.md index 4cb2b7c..537e724 100644 --- a/exercises/25/pacman_ai/README.md +++ b/exercises/25/pacman_ai/README.md @@ -66,7 +66,8 @@ bool PacManAI::isValidMove(const Move & move) {
Hint - +Use isWalkableForPacMan to make sure PacMan is not walking in ways that are not legal +
### Part 3