find the runner up score hackerrank python code example
Example: find the runner-up score
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))
#note: do not use set() will not work for negative numbers
# contact me : [email protected]