0
can anyone help write a recursive function pseudocode for this
: Given an array E, determine how many integers are greater than E[1]
2 Respostas
0
this is all i have so far idk what to add next
Greaterthan(A[1…n], n)
{
If (n=1)
return 0
else if (n>1)