This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def prime? | |
return false if num < 2 | |
2.upto(Math.sqrt(num)) do |i| | |
if num % i == 0 | |
return false | |
end | |
end | |
return true | |
end |