can anyone help write a recursive function pseudocode for this | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

can anyone help write a recursive function pseudocode for this

: Given an array E, determine how many integers are greater than E[1]

23rd Aug 2020, 10:27 AM
reeseey
1 Resposta
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)
23rd Aug 2020, 12:22 PM
reeseey