순열로 이루어진 배열 재구성하는 문제
https://leetcode.com/problems/build-array-from-permutation/description/
0부터 시작하는 순열로 이루어진 배열 nums가 주어진다.
이와 동일한 길이를 가지는 ans 배열을 반환하라.
ans[i] = nums[nums[i]]
class Solution {
public int[] buildArray(int[] nums) {
int len = nums.length;
int[] ans = new int[len];
for(int idx = 0; idx < len; idx++){
ans[idx] = nums[nums[idx]];
}
return ans;
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
2413. Smallest Even Multiple (0) | 2023.03.31 |
---|---|
2469. Convert the Temperature (0) | 2023.03.30 |
1929. Concatenation of Array (0) | 2023.03.30 |
2319. Check if Matrix Is X-Matrix (0) | 2023.03.07 |
12. Integer to Roman (0) | 2023.03.07 |