Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Re: How to connect more arrays to a new array

by integral (Hermit)
on Apr 28, 2003 at 06:28 UTC ( [id://253604]=note: print w/replies, xml ) Need Help??


in reply to Re: How to connect more arrays to a new array
in thread Find unique elements from multiple arrays

Perhaps a solution would be to use the values instead of the keys, but this means that all the data is copied about again, and so is highly unlikely to be the most efficient approach.

my @new = do{local %h; @h{@a,@b,@c,@d} = (@a,@b,@c,@d); values %h};
Adapted from BrowserUk's code

--
integral, resident of freenode's #perl

Replies are listed 'Best First'.
Re: How to connect more arrays to a new array
by Abigail-II (Bishop) on Apr 28, 2003 at 10:00 UTC
    That doesn't solve the problem at all. It fails for exactly the same reason:
    $ perl -le '@a = (undef, ""); @u = do {@h {@a} = @a; values %h}; print + scalar @u' 1 $

    Abigail

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (2)
As of 2024-04-25 22:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found