You are viewing a single comment's thread. Return to all comments →
Nice, I didn't think of the set function. Here is my aproach:
if __name__ == '__main__': n = int(input()) arr = map(int, input().split()) list = list(arr) l = [x for x in list if x != max(list)] print(max(l))
Seems like cookies are disabled on this browser, please enable them to open this website
Find the Runner-Up Score!
You are viewing a single comment's thread. Return to all comments →
Nice, I didn't think of the set function. Here is my aproach: