You are viewing a single comment's thread. Return to all comments →
if __name__ == '__main__': n = int(input()) arr = list(map(int, input().split())) unique_scores = set(arr) runner_up = sorted(unique_scores, reverse=True)[1] print(runner_up)
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 →