0:00:00
Find and return all the prime numbers in an array of integers. If there are no prime numbers, return an empty array.
Example:
Input:
[1, 2, 3]
Output:
[2,3]
Comments