Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Re: Optimizing a string processing sub

by clairudjinn (Beadle)
on Jan 10, 2003 at 20:44 UTC ( [id://225945]=note: print w/replies, xml ) Need Help??


in reply to Re: Optimizing a string processing sub
in thread Optimizing a string processing sub

No idea if this is faster, but I just wanted to post a version of my first code that works, tested, for any number of arguments:
#!/usr/bin/perl use strict; use warnings; my $charClass = '[a-z]'; #change as desired my @commonChars = compareChars(); print "Num common chars: ",scalar @commonChars,"\n"; ### sub assumes case insensitivity is appropriate ### sub compareChars { my $requiredCount = @ARGV; my %found; my @answer; for my $word ( @ARGV ) { my %nonredundantChars = map { $_ => 1 } split //, $word; $word = join '', keys %nonredundantChars; $found{lc $1}++ while ( $word =~ m/($charClass)/gi ) } while ( ( my $char, my $count ) = each %found ) { push @answer, $char if $count == $requiredCount; } return @answer; }

Log In?
Username:
Password:

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

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

    No recent polls found