diff options
| author | Asher Harvey-Smith <asherharveysmith@gmail.com> | 2024-09-08 16:34:11 +0100 |
|---|---|---|
| committer | Asher Harvey-Smith <asherharveysmith@gmail.com> | 2024-09-08 16:34:11 +0100 |
| commit | fe0f969a13083f235b779df1975cfc272740d99e (patch) | |
| tree | a073a5a570d2b00f2e9de4bef52aa64420d075c4 | |
| parent | cd91d6dca52e0e31e194d60c03c3cf15de2c2d67 (diff) | |
| download | perlweeklychallenge-club-fe0f969a13083f235b779df1975cfc272740d99e.tar.gz perlweeklychallenge-club-fe0f969a13083f235b779df1975cfc272740d99e.tar.bz2 perlweeklychallenge-club-fe0f969a13083f235b779df1975cfc272740d99e.zip | |
raku tweak
| -rw-r--r-- | challenge-285/asherbhs/raku/ch-1.raku | 4 |
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"],); |
