# Use the provided template. # Write a function that takes a list of arbitrary, unsorted integers (such as [5, 7, 2, 14]) # and return the largest and second largest elements (in order). # Your code must work on any arbitrary list of integers passed in. # (hint: this is a multi return function) # # You may assume the list is non-empty, no tie, and will only contain integers, # but you may not make any other assumptions about the list. # # You may not sort the list or use any built in functions # (such as min, sort, max, etc), except str() to print out the results def get_two_largest(lst): print(get_two_largest([5, 7, 2, 14])) print(get_two_largest([8, 2, 0, 9])) print(get_two_largest([2, 4, -2, 7])) print(get_two_largest([-2, 0, -7, -5]))