0
votes
3answers
413 views
List comparison
I use this question in interviews and I wonder what the best solution is.
Write a Perl sub that takes n lists, and then returns 2^n-1 lists telling you which items are in …
8
votes
How do I tell if a variable has a numeric value in Perl?
Use Scalar::Util::looks_like_number() which uses the internal Perl C API's looks_like_number() function, which is probably the most efficient way to do this.
Example:
…
0
votes
How can I test STDIN without blocking in Perl?
I just want to say that the described project here seems like a story for The Daily WTF in that's it's a ridiculously complex and Rube Goldberg-e …
3
votes
Parsing XML Elements & Attributes with Perl
$item is a hashref that looks like this:
$item = {
'RunningTime' => {'content' => '90', 'Units' => 'minutes'},
'ProductGroup' => 'DVD'
};
…
2
votes
Regex to replace Boolean with bool
Watch out with that quote-matching lookahead assertion. That'll only match if Boolean is the last part of a string, but not in the middle of the string. You'll need to match an even number …
0
votes
Looking for a n-ary tree implementation in Perl
Depending on what you need a tree structure for, you might not need any pre-built implementation. Perl already supports them using arrays of arrayrefs.
For example, a simple representation …
0
votes
List comparison
Here is my solution:
Construct a hash whose keys are the union of all the elements in the input lists, and the values are bit strings, where bit i is set if the element is present …
5
votes
What Perl module would you be lost without?
Can't live without Text::CSV_XS for parsing and generating line-oriented structured data.
…
14
votes
Is there any way to use a “constant” as hash key in Perl?
use constant actually makes constant subroutines.
To do what you want, you need to explicitly call the sub:
use constant X => 1;
my %x = ( &X => 'X') …
6
votes
Obfuscation Puzzle: Can you figure out what this Perl function does?
It takes two arrayrefs and returns a new arrayref with the contents of the second array rearranged such that the second part comes before the first part, split at a point based on the memory locati …
6
votes
Why do you need $ when accessing array and hash elements in Perl?
This is valid Perl: @var[0]. It is an array slice of length one. @var[0,1] would be an array slice of length two.
@var['key'] is not valid Perl becaus …
3
votes
Java development in a Perl shop: How to select the right tool?
I would suggest that if the reason you're being pulled away from Perl is because of performance issues, then I would push to just rewrite in C as Perl XS modules the parts of your application that …
5
votes
How does MediaWiki compose the image paths?
The accepted answer is incorrect:
The MD5 sum of a string is 32 hex characters (128 bits), not 16
The file path is calculated from the MD5 sum of the filename, not the conten …
1
vote
How can I parse people’s full names into user names in Perl?
It looks like your input data is comma-separated. To me, the clearest way to do this would be split into components, and then generate the login names from that:
while (<>) {
…
4
votes
What are the uses of lvalue subroutines in Perl?
You can use lvalue subs as setters for object members:
sub x : lvalue {
my $self = shift;
$self->{x};
}
Then later:
$foo->x = 5;
…
