Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = map(int, input().split()) score=[] lst=list(arr) for i in lst: if i not in score: score.append(i) score.sort() score.reverse() print(score[1])