RosettaCodeData/Task/Remove-duplicate-elements/Raku/remove-duplicate-elements-1.raku

2 lines
56 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
my @unique = [1, 2, 3, 5, 2, 4, 3, -3, 7, 5, 6].unique;