Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: Homework question list

by Tanktalus (Canon)
on May 22, 2005 at 15:37 UTC ( [id://459353]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      my %a1;
      undef @a1{@a1};
      my @in_both = grep { exists $a1{$_} } @a2;
    
  2. or download this
      my (%a1, %a2);
      undef @a1{@a1};
      undef @a2{@a2};
      my @in_both = grep { exists $a1{$_} } keys %a2;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (8)
As of 2024-04-18 10:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found