Easy
Given a zero-based permutation nums, build an array ans of the same length where ans[i] = nums[nums[i]].
nums
ans
ans[i] = nums[nums[i]]
Input: nums = [0,2,1,5,3,4] Output: [0,1,2,4,5,3]
Input: nums = [5,0,1,2,3,4] Output: [4,5,0,1,2,3]