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
Get step-by-step solutions from verified subject matter experts
