Help for this page

Select Code to Download


  1. or download this
    sub uniq {  #and this to handle the duplicated emails
        return keys %{ { map { $_ => 1 } @_ } };
    }
    
    say join ' ', uniq(qw( ABC DEF GHI JKL ABC DEF ABC ));
    
  2. or download this
    GHI DEF ABC JKL
    
  3. or download this
    my $removed = @findemails - @filtered;