aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-285/asherbhs/raku/ch-1.raku4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-285/asherbhs/raku/ch-1.raku b/challenge-285/asherbhs/raku/ch-1.raku
index df4dca1d61..e4e082da38 100644
--- a/challenge-285/asherbhs/raku/ch-1.raku
+++ b/challenge-285/asherbhs/raku/ch-1.raku
@@ -2,5 +2,5 @@ sub no-connection(@routes) {
(@routes»[1] ∖ @routes»[0]).keys.head
}
-say no-connection [["B", "C"], ["D", "B"], ["C", "A"]];
-say no-connection [["A", "Z"],];
+say no-connection (["B", "C"], ["D", "B"], ["C", "A"]);
+say no-connection (["A", "Z"],);