diff options
| -rw-r--r-- | challenge-080/simon-proctor/raku/ch-1.raku | 2 |
1 files changed, 1 insertions, 1 deletions
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) ); } |
