Keerat666 / LeetCode-Solutions

A Repo for DSA problems on Leetcode
12 stars 80 forks source link

1920. Build array with permutations [EASY] #211

Open RndmCodeGuy20 opened 1 year ago

RndmCodeGuy20 commented 1 year ago

Given a zero-based permutation nums (0-indexed), build an array ans of the same length where ans[i] = nums[nums[i]] for each 0 <= i < nums.length and return it.

A zero-based permutation nums is an array of distinct integers from 0 to nums.length - 1 (inclusive).

You can find this question here.

Kindly assign this issue to me.