aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-106/simon-proctor/raku/ch-1.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-106/simon-proctor/raku/ch-1.raku b/challenge-106/simon-proctor/raku/ch-1.raku
index 5098a59729..733b031e91 100644
--- a/challenge-106/simon-proctor/raku/ch-1.raku
+++ b/challenge-106/simon-proctor/raku/ch-1.raku
@@ -5,5 +5,5 @@ multi sub MAIN ( $ ) is hidden-from-USAGE { say 0 }
#| Given a list of numbers print the largest distance between them when sorted
multi sub MAIN ( *@a where *.elems > 1 ) {
- @a.sort.rotor(2 => -1).map( { $^a[1] - $^a[0] } ).max.say;
+ @a.sort.rotor(2 => -1).map( { $^a[1] - $^a[0] } ).max.say;
}