Help for this page

Select Code to Download


  1. or download this
    use List::Util qw{ uniq };
    
    %teamAcctsUniq = map {
        $_ => [ uniq(@{ $teamAccts{$_} }) ]
    } keys %teamAccts;
    
  2. or download this
    @teamAcctsUniq{ keys %teamAccts } = map [uniq(@$_)], values %teamAccts
    +;