You are viewing a single comment's thread. Return to all comments →
if name == 'main': n = int(input()) arr = map(int, input().split())
arr = list(arr) maxscore = max(arr) newScore = [] for score in arr: if score != maxscore: newScore.append([score]) runnerUp = max(newScore) Result = runnerUp[0] print(Result)
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 = map(int, input().split())