Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Extracting Unique Characters from a Array

by mreece (Friar)
on Sep 07, 2006 at 17:41 UTC ( [id://571757]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @nums = qw(2 1 3 5 4 5 4 3 2 1);     # order is not important
    
    ...
        }
    }
    ## TODO: do something with @unique
    
  2. or download this
    my @nums = qw(2 1 3 5 4 5 4 3 2 1);    # order is not important
    my %seen = map { $_ => 1 } @nums; # build a hash; keys will be unique!
    @nums = sort keys %seen;       # replace old list with new sorted list
    ## TODO: do something with @nums
    
  3. or download this
    my @nums = qw(2 1 3 5 4 5 4 3 2 1);
    
    ...
        $previous = $current;     # 'current' becomes 'previous'
    }
    ## TODO: do something with @unique
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://571757]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-19 03:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found