Skip to content

Instantly share code, notes, and snippets.

@alexandregama
Created June 9, 2020 15:33
Show Gist options
  • Save alexandregama/46d048df58b88671f971cab61a94272e to your computer and use it in GitHub Desktop.
Save alexandregama/46d048df58b88671f971cab61a94272e to your computer and use it in GitHub Desktop.
def count_prime_number_version_2(array)
array.count do |item|
is_prime_number(item)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment