My submissions:
Hole 1 (16 characters)
sub f{
(pop=~/w+/g)[4]
}
Hole 2 (31 characters)
perl -e# -e# -e# -e# -egoto+TPC
Hole 3 (46 characters)
If only alphanumeric data will be processed:
sub f{
$p=$_=pop;1while(!/^($p){2,}$/&&$p=~s/.$//);$p
}
If required to support non-alpha, or unusual characters
in the input data (requires \Q...\E), then 51 characters:
sub f{
$p=$_=pop;1while(!/^(\Q$p\E){2,}$/&&$p=~s/.$//s);$p
}
Hole 4 (24 characters)
sub f{
map{chr hex$_}pop=~/../g
}
Hole 5 (30 characters)
sub f{
$x=pop;map{$_>$x?$x=$_:0}@_;$x
}
Hole 6 (39 characters)
sub f{
grep{s/.//}sort map{/[aeiou]/;"$&$_"}@_
}
Update:
Corrected hole 4 (returned string, wanted
list).
Reduced hole 6 (@x=@_ to @_, used $& instead
of memorizing)
Removed first 'version' of hole #5, which didn't handle
negative numbers, leaving the longer second version.
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.