Skip to content

Instantly share code, notes, and snippets.

@alexandregama
Created June 10, 2020 15:24
Show Gist options
  • Save alexandregama/fc9496eb41ee8cfd2846f5c612338fb8 to your computer and use it in GitHub Desktop.
Save alexandregama/fc9496eb41ee8cfd2846f5c612338fb8 to your computer and use it in GitHub Desktop.
def is_prime_number(item, number)
return false if item == 1
return is_prime_number(item, number - 1) if item % number != 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment