Skip to content

Instantly share code, notes, and snippets.

@alexandregama
Created June 10, 2020 15:24
Show Gist options
  • Save alexandregama/d28d6079efad8ddceac77c6edfde219a to your computer and use it in GitHub Desktop.
Save alexandregama/d28d6079efad8ddceac77c6edfde219a to your computer and use it in GitHub Desktop.
def is_prime_number(item, number)
return false if item == 1
return true if number == 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