Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = map(int, input().split()) result = sorted(set(arr))[-2] print(result) is this correct