Find the Runner-Up Score!

  • + 0 comments

    adding strip was not really necessairy since max work with iterables

    if __name__ == '__main__':
            n = int(input())
            arr = list(map(int, input().split()))
            m=max(arr)
            while m in arr :
                arr.remove(m)
            print(max(arr))