vote up 6 vote down star
1
('1' * N) !~ /^1?$|^(11+?)\1+$/

On the net, I found this piece of Ruby code that works for N >= 0 that determines whether or not N is a prime. From what I can tell, it looks like play with regex but I have no idea how it works. Could someone tell me how it works?

flag
Is this really an indictment of Ruby's obscure syntax? If so, I totally agree - wow is that obscure! – S.Lott Sep 29 '08 at 1:50
What do you mean by "Ruby's obscure syntax"? Regexps look pretty much the same in all languages, don't they? – Jörg W Mittag Sep 29 '08 at 1:54
1  
This is just an obscure regex, it's not actually anything to do with ruby – Orion Edwards Sep 29 '08 at 1:56

3 Answers

vote up 10 vote down check

You can find a lengthy explanation of this code here: http://www.noulakaz.net/weblog/2007/03/18/a-regular-expression-to-check-for-prime-numbers/

link|flag
Thanks. I am basking in the glow if it came from a Perl programmer first. – J.J. Sep 29 '08 at 2:37
vote up 1 vote down

Greatest Common Divisor (gcd):

/^(1+)\1*=\1+$/.match('1' * x + '=' + '1' * y)[1].length

Both this and the is_prime one works in about the same way. It tries all combinations before giving up.

This one will try to split the first number in even parts, and match the second number with one or more of those parts. If it finds a match it returns the length of the selected part.

link|flag
vote up 1 vote down

See also What is the most brilliant regex you’ve ever used? (and yes, I can confirm that this regexp was originally written by Abigail. I've even heard her explain how it works :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.