I have the following array
prime_arr = [2,3,5,7,11,13]
and I need to check whether the array has 3, 5 7 and return the value(s) differ based on presence
If it has 3 alone return "Yes" and 5 alone return "it is " and 7 alone return "done" and
If it has [3,5] return "Yes it is "
If it has [3,5,7] return "Yes it is done"
The return value should differ based on combination
Thanks in advance.