You are viewing a single comment's thread. Return to all comments →
n = int(input()) arr = map(int, input().split())
arr=list(arr) arr.sort() a=arr[n-1] for i in range (1,n): if(arr[n-(i+1)]<a): print(arr[n-(i+1)]) break
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 →
n = int(input()) arr = map(int, input().split())