You are viewing a single comment's thread. Return to all comments →
Many variations of the same theme...
n = int(input()) inv = [0] * (n+1) for x,y in enumerate(map(int, input().split()),1): inv[y] = x print(*rev[1:], sep = '\n')
Seems like cookies are disabled on this browser, please enable them to open this website
Security Function Inverses
You are viewing a single comment's thread. Return to all comments →
Many variations of the same theme...