From edf8a7290888977ff0bc625f02a81abbc37fb984 Mon Sep 17 00:00:00 2001 From: Andinus Date: Tue, 2 Mar 2021 23:55:59 +0530 Subject: Re-structure code These changes should make it easier to read the code. --- lib/Octans/Neighbors.rakumod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Octans/Neighbors.rakumod') diff --git a/lib/Octans/Neighbors.rakumod b/lib/Octans/Neighbors.rakumod index 33dd834..0c90b0c 100644 --- a/lib/Octans/Neighbors.rakumod +++ b/lib/Octans/Neighbors.rakumod @@ -34,13 +34,13 @@ sub neighbors ( # each direction according to the values specified in # @directions array. In this case we're just trying to # move in 4 directions (top, bottom, left & right). - DIRECTION: for @directions -> $direction { + direction: for @directions -> $direction { $pos-y = $y + $direction[0]; $pos-x = $x + $direction[1]; # If movement in this direction is out of puzzle grid # boundary then move on to next direction. - next DIRECTION unless @puzzle[$pos-y][$pos-x]; + next direction unless @puzzle[$pos-y][$pos-x]; # If neighbors exist in this direction then add them # to @neighbors[$y][$x] array. -- cgit 1.4.1-2-gfad0