DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Check For Primality With A Regexp
Original perl code here:
http://montreal.pm.org/tech/neil_kandalgaonkar.shtml
class Fixnum
def prime?
('1' * self) !~ /^1?$|^(11+?)\1+$/
end
end






Comments
Snippets Manager replied on Wed, 2011/03/23 - 12:11pm
Snippets Manager replied on Sun, 2007/03/18 - 1:59pm