We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
if name == 'main':
n = int(input())
arr = list(set(map(int, input().split())))
first=second=float('-inf')
for i in arr:
if i>first:
second=first
first=i
elif i>second:
second=i
print(second)
Cookie support is required to access HackerRank
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 →
if name == 'main': n = int(input()) arr = list(set(map(int, input().split()))) first=second=float('-inf') for i in arr: if i>first: second=first first=i elif i>second: second=i print(second)