You are viewing a single comment's thread. Return to all comments →
My solution in Python 3:
t=int(input()) s=list(map(int,input().split())) if len(set(s)) == t: print("YES") else: print("NO")
Seems like cookies are disabled on this browser, please enable them to open this website
Security Bijective Functions
You are viewing a single comment's thread. Return to all comments →
My solution in Python 3: