Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

l differentiate between nurse case managers and nurse navigators

Answered: 1 week ago