Find the Runner-Up Score!

  • + 0 comments

    if name == 'main': n = int(input()) arr = map(int, input().split())

    runner_up = sorted(set(arr))
    print(runner_up[-2])

    """" set(arr) → removes duplicate scores (like multiple 6’s). sorted(...) → sorts the unique scores in ascending order. sorted_arr[-2] → accesses the second last (runner-up) element. """"