Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Check even numbers?

by cees (Curate)
on Aug 07, 2006 at 05:02 UTC ( [id://565891]=note: print w/replies, xml ) Need Help??


in reply to Check even numbers?

If you want to count the number of occurences of a single character in a string, then you should look at using 'tr'.

$str = 'ABABAABBA'; $count = $str =~ tr/A//; # $a = 5;

If you omit the second arg to tr, it knows you are not changing the string, but still counts up the occurences for you, which makes this very efficient.

After that you just have to see if the number is positive ($count > 0) and use Grandfather's test above to see if it is even ( !($count & 1) ).

if ($count && !($count & 1)) { # Do something with this protein sequence }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-19 17:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found