You are viewing a single comment's thread. Return to all comments →
Can someone please tell why this does not work????????
if __name__ == '__main__': n = int(input()) arr = map(int, input().split()) first=0 second=0 for i in arr: if i>first: first=i for j in arr: if j==first: next elif j>second: second=j print(second)
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 →
Can someone please tell why this does not work????????