I'll explain it in the black box so that no one reads anything
they don't want to see. :)
All you need to do to solve the original problem is do a reverse
on the array in *scalar context*. Because in scalar context,
reverse concatenates its arguments, then reverses that new
strong. For example, this would solve the original problem:
sub R { scalar reverse @_ }
Given the following invocation:
R(65,43,21);
that would return the string '123456', because the args are
first concatenated into '654321', then that string is reversed
by reverse.
The problem with using scalar is that this is golf, and scalar
is too long.
So perhaps you see where this is going, now--the key is to
get reverse into scalar context with as few keystrokes as
possible, and to have it work on strings as well as numbers.
To do this, you can use the bitwise negation operator '~', which
(if you read perlop) also works on strings. Just negate the
string twice, and you have the original string; and the operator
puts reverse into scalar context.
And you're done.
|
As always, if I've got anything wrong, please correct me.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|