Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: Uniq and sort in perl

by Preceptor (Deacon)
on Jul 15, 2012 at 11:26 UTC ( [id://981893]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Uniq and sort in perl
in thread Uniq and sort in perl

What is happening in that one liner:
print "$vm, $filer, \n" if ! $seen{"$vm:$filler"}++
It's quite an elegant piece of code, with a lot going on. So let's break it down:
  • The hash called '%seen' is being checked - to see if it contains a key called "$vm:$filler". The value of this is being tested for being 'false'. (because there's 'if !' which is 'if not') - which is literally 'if not seen'
  • So if $seen{"$vm:filler"} is _not_ 'true' - we haven't seen it, and so we print it.
  • And then that ++ kicks in, to post increment, 'adding one' to $seen{"$vm:$filler"}' - so the first time we try doing that, it's going to be undefined (and thus false) triggering a print. Second time, it'll be 'non zero' and so evaluate as 'true'.
For bonus points, you can probably do:
foreach my $key ( keys %seen ) { print "$key was seen $seen{$key} times\n"; }
Does that make it any clearer?

Log In?
Username:
Password:

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

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

    No recent polls found