You are viewing a single comment's thread. Return to all comments →
time complexity : O(n)
if name == 'main': n = int(input()) arr =list( map(int, input().split()))
arr = set(arr) arr.remove(max(arr)) print(max(arr))
Seems like cookies are disabled on this browser, please enable them to open this website
Find the Runner-Up Score!
You are viewing a single comment's thread. Return to all comments →
time complexity : O(n)
if name == 'main': n = int(input()) arr =list( map(int, input().split()))