From 3e67238bc72da1d29cee6bfb233c82b076f865c5 Mon Sep 17 00:00:00 2001 From: Simon Proctor Date: Thu, 1 Oct 2020 15:02:26 +0100 Subject: Small but I think nice change to challenge 1 --- challenge-080/simon-proctor/raku/ch-1.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-080/simon-proctor/raku/ch-1.raku b/challenge-080/simon-proctor/raku/ch-1.raku index 2b86522724..0367bc1807 100644 --- a/challenge-080/simon-proctor/raku/ch-1.raku +++ b/challenge-080/simon-proctor/raku/ch-1.raku @@ -6,6 +6,6 @@ use v6; sub MAIN ( *@N where { $_.all ~~ Int } #= List of integers ) { - say (1...*).first( * !~~ any(@N) ); + say (1...*).first( * ~~ none(@N) ); } -- cgit