Skip to content

Instantly share code, notes, and snippets.

@stan
Forked from atnan/prime.rb
Created May 22, 2010 09:16
Show Gist options
  • Save stan/409949 to your computer and use it in GitHub Desktop.
Save stan/409949 to your computer and use it in GitHub Desktop.
class Integer
def prime?
!("1" * self).match(/^1?$|^(11+?)\1+$/).nil?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment