You are viewing a single comment's thread. Return to all comments →
Python solution is simple...
n = int(input()) nums = map(int, input().split()) output = sorted(enumerate(nums, 1), key=lambda x: x[1]) print('\n'.join(str(x[0]) for x in output))
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 →
Python solution is simple...