Created
June 9, 2020 15:33
-
-
Save alexandregama/46d048df58b88671f971cab61a94272e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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