Find the Runner-Up Score!

  • + 21 comments

    @tao_zhang, here it is for many duplicated max values -

    n = int(input())
    arr = list(map(int, input().split()))
    zes = max(arr)
    i=0
    while(i<n):
        if zes ==max(arr):
            arr.remove(max(arr))
        i+=1
    print(max(arr))