From fe0f969a13083f235b779df1975cfc272740d99e Mon Sep 17 00:00:00 2001 From: Asher Harvey-Smith Date: Sun, 8 Sep 2024 16:34:11 +0100 Subject: raku tweak --- challenge-285/asherbhs/raku/ch-1.raku | 4 ++-- 1 file 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"],); -- cgit