What a clever inefficiency! I was trying to find a way
to generate a list of numbers that was at least as big as
each list, but failed...
With ?: I can save some, and shaving with map$foo,@list
tricks I can save some more. This brings the safe version
down to 48 characters.
sub Mix {
map{my$i=$_;map$i<@$_?$$_[$i]:(),@_}0..map@$_,@_
}
That matches what was done unsafely before. But
unfortunately for sanity's sake observe the following
33 character entry:
sub Mix {
map{splice@$_,0,1}map@_,map@$_,@_
}
I have written saner code...
UPDATE
Saved 3 chars on the unsafe example, there is no need
for a nice numerical list when I will be just converting
the elements...
UPDATE 2
Sheesh. And the safe example can be modified to the
rather bizarre 45 character beast:
sub Mix {
map{splice@$_,0,1}map@_,map@$_,@_=map[@$_],@_
}
UPDATE 3
I give up on shrinking this. However I have 4 variations
on the key 33 char sub. In terms of efficiency of
execution, the following wins:
sub Mix {
map{map{splice@$_,0,1}(@_)x@$_}@_
}
So that is (barring the unexpected) my final answer.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.