Skip to content

Instantly share code, notes, and snippets.

@mcihad
Last active August 29, 2015 14:04
Show Gist options
  • Save mcihad/40c916903200a197d75b to your computer and use it in GitHub Desktop.
Save mcihad/40c916903200a197d75b to your computer and use it in GitHub Desktop.
Ruby asal sayı
#require "prime" diyerek standart prime modulünüde kullanabilirsiniz
class Fixnum
def prime?
2.upto((self-(self % 2))/2) do |i|
if self % i==0
return false
end
end
return true
end
end
puts 12.prime?
puts 99991.prime?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment