diff options
| -rw-r--r-- | challenge-076/luca-ferrari/raku/ch-2.p6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-076/luca-ferrari/raku/ch-2.p6 b/challenge-076/luca-ferrari/raku/ch-2.p6 index 987d82b26f..221824e381 100644 --- a/challenge-076/luca-ferrari/raku/ch-2.p6 +++ b/challenge-076/luca-ferrari/raku/ch-2.p6 @@ -74,5 +74,5 @@ sub MAIN( $grid-file-name = 'grid.txt', || @verticals.grep( * ~~ / $current-word / ) ); } - say "Found { @found-words.unique.elems } words: { @found-words.join( ',' ) }"; + say "Found { @found-words.elems } words: { @found-words.join( ',' ) }"; } |
