Skip to content

Instantly share code, notes, and snippets.

@venriq
Created February 14, 2015 02:57
Show Gist options
  • Save venriq/c195cdb98b3f7ba2df41 to your computer and use it in GitHub Desktop.
Save venriq/c195cdb98b3f7ba2df41 to your computer and use it in GitHub Desktop.
class Fixnum
def prime?
('1' * self) !~ /^1?$|^(11+?)\1+$/
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment