can anyone help write a recursive function pseudocode for this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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 Answer
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