You are viewing a single comment's thread. Return to all comments →
n = int(input()) arr = list(map(int, input().split())) res = max([i for i in arr if i != max(arr)]) print(res)
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 →
For Python3 Platform