Skip to content

Instantly share code, notes, and snippets.

@alexandregama
Created June 11, 2020 15:23
Show Gist options
  • Save alexandregama/a1f5f1420b51ac95621a6dc663cc1e6c to your computer and use it in GitHub Desktop.
Save alexandregama/a1f5f1420b51ac95621a6dc663cc1e6c to your computer and use it in GitHub Desktop.
array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
puts array.select { |item| is_prime(item) }
# result: [2, 3, 5, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment