Help for this page

Select Code to Download


  1. or download this
    (map { $_ => 1 } @array)
    
  2. or download this
    my @unique = keys (1,1,2,3,2,2);
    
  3. or download this
    my @unique = keys @array;