diff options
| -rwxr-xr-x | challenge-327/simon-proctor/raku/ch-2.raku | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-327/simon-proctor/raku/ch-2.raku b/challenge-327/simon-proctor/raku/ch-2.raku index 807b068e3a..43d818647a 100755 --- a/challenge-327/simon-proctor/raku/ch-2.raku +++ b/challenge-327/simon-proctor/raku/ch-2.raku @@ -4,7 +4,7 @@ a list of pairs which share the minimum absolute difference found in the list) sub MAIN ( - *@a where @a.all ~~ Int && @a.unique.elems == @a.elems # A list of distinct integers + *@a where @a.all ~~ Int && @a.unique.elems == @a.elems #= A list of distinct integers ) { my @ret = []; my $mad = Inf; |
