Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my @INDEX = uniq @TERMS;
    
    print "(", join( ',',@INDEX), ")\n";
    
  2. or download this
    C:\Code>perl uniqarray.pl
    (1,2,7,4,5,3,27,81)