Find the Runner-Up Score!

  • + 0 comments

    Nice! Here's an even shorter version using your approach:

    if name == 'main': n = int(input()) arr = list(map(int, input().split())) print(max([x for x in arr if x != max(arr)]))