Question: Write an algorithm in Python that output the largest and the second largest values in the array s[0],s[n-1]. Assume that n>1 and the values in

Write an algorithm in Python that output the largest and the second largest values in the array s[0],s[n-1]. Assume that n>1 and the values in the array are distinct.

array = [8,6,4,2,9,7,5,3,1,9]

def find2Largest(a):

#todo

return largest, second_largest

print(find2Largest(array))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!